legislation_subjects
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where bill_id = "95-sres-596"
This data as json, CSV (advanced)
| Link | bill_id | subject |
|---|---|---|
| 95-sres-596,Congressional committees (Senate) | A resolution appointing a committee to notify the President concerning the proposed adjournment of the session. 95-sres-596 | Congressional committees (Senate) |
| 95-sres-596,Congressional sessions | A resolution appointing a committee to notify the President concerning the proposed adjournment of the session. 95-sres-596 | Congressional sessions |
| 95-sres-596,Senate | A resolution appointing a committee to notify the President concerning the proposed adjournment of the session. 95-sres-596 | Senate |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE legislation_subjects (
bill_id TEXT REFERENCES legislation(bill_id),
subject TEXT,
PRIMARY KEY (bill_id, subject)
);
CREATE INDEX idx_legsub_subject ON legislation_subjects(subject);