legislation_actions
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where bill_id = "93-sjres-101" sorted by action_date descending
This data as json, CSV (advanced)
Suggested facets: action_date (date)
| id | bill_id | action_date ▲ | action_text | action_type | chamber | action_code |
|---|---|---|---|---|---|---|
| 1809624 | Joint resolution proposing an amendment to the Constitution of the United States relating to the nomination of individuals for election to the offices of the President and Vice President of the United States, and to the direct popular election of such officers. 93-sjres-101 | 1973-05-02 | Referred to Senate Committee on Judiciary. | IntroReferral | Senate | |
| 1809625 | Joint resolution proposing an amendment to the Constitution of the United States relating to the nomination of individuals for election to the offices of the President and Vice President of the United States, and to the direct popular election of such officers. 93-sjres-101 | 1973-05-02 | Introduced in Senate | IntroReferral | Library of Congress |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE legislation_actions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
bill_id TEXT REFERENCES legislation(bill_id),
action_date TEXT,
action_text TEXT,
action_type TEXT,
chamber TEXT,
action_code TEXT
);
CREATE INDEX idx_legact_bill ON legislation_actions(bill_id);
CREATE INDEX idx_legact_date ON legislation_actions(action_date);