crec_bills
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
0 rows where granule_id = "CREC-2018-06-20-pt1-PgH5347-4" sorted by congress descending
This data as json
congress 0
bill_type 0
0 records
CREATE TABLE crec_bills (
granule_id TEXT NOT NULL REFERENCES congressional_record(granule_id),
congress INTEGER,
bill_type TEXT,
bill_number INTEGER,
bill_id TEXT,
PRIMARY KEY (granule_id, congress, bill_type, bill_number)
);
CREATE INDEX idx_crec_bill_id ON crec_bills(bill_id);
CREATE INDEX idx_crec_bill_type ON crec_bills(bill_type, bill_number);