legislation
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where bill_type = "sjres", congress = 97 and policy_area = "Environmental Protection" sorted by introduced_date descending
This data as json, CSV (advanced)
Suggested facets: introduced_date (date), latest_action_date (date), update_date (date)
| bill_id | congress | bill_type | bill_number | title | policy_area | introduced_date ▲ | latest_action_date | latest_action_text | origin_chamber | sponsor_name | sponsor_state | sponsor_party | sponsor_bioguide_id | cosponsor_count | summary_text | update_date | url |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 97-sjres-195 | 97 | sjres | 195 | A joint resolution designating the week of May 2, 1982 through May 9, 1982 as "National Clean Air Week." | Environmental Protection | 1982-05-04 | 1982-05-05 | Referred to House Committee on Post Office and Civil Service. | Senate | Sen. Stafford, Robert T. [R-VT] | VT | R | S000776 | 34 | Requests the President to designate the week of May 2 through May 8, 1982, as National Clean Air Week. | 2024-02-06T20:04:02Z |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE legislation (
bill_id TEXT PRIMARY KEY,
congress INTEGER,
bill_type TEXT,
bill_number INTEGER,
title TEXT,
policy_area TEXT,
introduced_date TEXT,
latest_action_date TEXT,
latest_action_text TEXT,
origin_chamber TEXT,
sponsor_name TEXT,
sponsor_state TEXT,
sponsor_party TEXT,
sponsor_bioguide_id TEXT,
cosponsor_count INTEGER DEFAULT 0,
summary_text TEXT,
update_date TEXT,
url TEXT
);
CREATE INDEX idx_leg_congress ON legislation(congress);
CREATE INDEX idx_leg_type ON legislation(bill_type);
CREATE INDEX idx_leg_policy ON legislation(policy_area);
CREATE INDEX idx_leg_date ON legislation(introduced_date);
CREATE INDEX idx_leg_sponsor ON legislation(sponsor_name);
CREATE INDEX idx_leg_sponsor_bioguide ON legislation(sponsor_bioguide_id);