home / openregs

crec_bills

Bills referenced in Congressional Record floor proceedings. Links floor debate to specific legislation. Cross-references with the legislation table via bill_id.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

0 rows where granule_id = "CREC-2017-11-30-pt1-PgH9529" sorted by congress descending

✎ View and edit SQL

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);
Powered by Datasette · Queries took 450.519ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API