nomination_actions
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where nomination_id = "119-849-00" sorted by action_date descending
This data as json, CSV (advanced)
Suggested facets: action_date (date)
| id | nomination_id | action_date ▲ | action_text | action_type |
|---|---|---|---|---|
| 189882 | Military nomination — Commerce, Science, and Transportation 119-849-00 | 2026-02-23 | Received in the Senate and referred to the Committee on Commerce, Science, and Transportation. | IntroReferral |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE nomination_actions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
nomination_id TEXT NOT NULL REFERENCES nominations(id),
action_date TEXT,
action_text TEXT,
action_type TEXT
);
CREATE INDEX idx_nomact_nom ON nomination_actions(nomination_id);