crs_report_bills
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
135,890 rows
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE crs_report_bills (
id INTEGER PRIMARY KEY AUTOINCREMENT,
report_id TEXT NOT NULL REFERENCES crs_reports(id),
bill_title TEXT,
congress INTEGER,
bill_type TEXT,
bill_number INTEGER,
bill_id TEXT
);
CREATE INDEX idx_crb_report ON crs_report_bills(report_id);
CREATE INDEX idx_crb_bill ON crs_report_bills(bill_id);