lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "eb61365e-ba4e-49c6-8944-e5c275d56b0d" and issue_code = "TOR" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: received_date (date)
| id | filing_uuid | filing_type | registrant_name | registrant_id | client_name | filing_year ▲ | filing_period | issue_code | specific_issues | government_entities | income_amount | expense_amount | is_no_activity | is_termination | received_date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2441823 | U.S. CHAMBER INSTITUTE FOR LEGAL REFORM eb61365e-ba4e-49c6-8944-e5c275d56b0d | Q1 | U.S. CHAMBER INSTITUTE FOR LEGAL REFORM | 51172 | U S CHAMBER INSTITUTE FOR LEGAL REFORM | 2020 | first_quarter | TOR | H.R. 327, Ending Forced Arbitration for Victims of Data Breaches Act of 2019 H.R. 1423, Forced Arbitration Injustice Repeal (FAIR) Act H.R. 1430/S. 608, Court Legal Access and Student Support (CLASS) Act of 2019 H.R. 1443, Ending Forced Arbitration of Sexual Harassment Act of 2019 H.R. 1500, Consumers First Act H.R. 2148/S. 1082, Bringing an End to Harassment by Enhancing Accountability and Rejecting Discrimination in the Workplace (BE HEARD in the Workplace) Act H.R. 2474/S. 1306, Protecting the Right to Organize Act of 2019 H.R. 2749/S. 1491, Restoring Justice for Workers Act H.R. 2750, Justice for Servicemembers Act H.R. 3843/S. 3026, Countering Russian and Other Overseas Kleptocracy Act H.R. 4140, Foreign Extortion Prevention Act S. 610, Forced Arbitration Injustice Repeal Act S. 620, Safety Over Arbitration Act of 2019 S. 630, Arbitration Fairness for Consumers Act S. 635, Restoring Statutory Rights and Interests of the States Act of 2019 Potential legislation similar to H.R. 6351, Fairness in Nursing Home Arbitration Act of 2012 Various issues relating to the implementation of the Federal Arbitration Act (P.L. 68-401); fraud and abuse in civil litigation; civil discovery reform; legal reform; asbestos and talc related litigation; litigation involving perfluoroalkyl substances (PFAS); legislation related to sexual assault and arbitration | Federal Communications Commission (FCC),Food & Drug Administration (FDA),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Office of Management & Budget (OMB),Securities & Exchange Commission (SEC),SENATE,Treasury, Dept of | 5860000 | 0 | 0 | 2020-04-20T11:32:34.700000-04:00 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE lobbying_activities (
id INTEGER PRIMARY KEY,
filing_uuid TEXT NOT NULL,
filing_type TEXT NOT NULL,
registrant_name TEXT NOT NULL,
registrant_id INTEGER,
client_name TEXT NOT NULL,
filing_year INTEGER NOT NULL,
filing_period TEXT NOT NULL,
issue_code TEXT,
specific_issues TEXT,
government_entities TEXT,
income_amount INTEGER,
expense_amount INTEGER,
is_no_activity INTEGER DEFAULT 0,
is_termination INTEGER DEFAULT 0,
received_date TEXT,
CONSTRAINT fk_activity_filing FOREIGN KEY (filing_uuid)
REFERENCES lobbying_filings_raw(filing_uuid)
);
CREATE INDEX idx_act_client_name ON lobbying_activities(client_name COLLATE NOCASE);
CREATE INDEX idx_act_issue_code ON lobbying_activities(issue_code);
CREATE INDEX idx_act_filing_year ON lobbying_activities(filing_year);
CREATE INDEX idx_act_filing_uuid ON lobbying_activities(filing_uuid);