lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where filing_uuid = "cc5f715e-d9cf-4fd6-bc2a-d6fa45d714dc" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2600917 | CROSSROADS STRATEGIES, LLC cc5f715e-d9cf-4fd6-bc2a-d6fa45d714dc | Q1 | CROSSROADS STRATEGIES, LLC | 400531586 | LIBERTY MUTUAL GROUP INC. | 2021 | first_quarter | TAX | Implementation of Tax Cuts and Jobs Act (P.L.115-97). | HOUSE OF REPRESENTATIVES,SENATE | 80000 | 0 | 0 | 2021-04-19T10:08:15.297000-04:00 | |
| 2600918 | CROSSROADS STRATEGIES, LLC cc5f715e-d9cf-4fd6-bc2a-d6fa45d714dc | Q1 | CROSSROADS STRATEGIES, LLC | 400531586 | LIBERTY MUTUAL GROUP INC. | 2021 | first_quarter | INS | Legislation affecting the regulation of insurance products and companies, including issues related to international capital standards for insurance, flood insurance, and autonomous vehicles; Business Interruption Insurance issues; infrastructure security bonding issues. Implementation of Economic Growth, Regulatory Relief, and Consumer Protection Act (P.L.115-174). COVID-19 stimulus relief legislation and COVID-19 liability protection legislative proposals, including: H.R.748, CARES Act (P.L.116-136) implementation; H.R.133, Consolidated Appropriations Act, 2021 (P.L.116-260) implementation; H.R.1319, American Rescue Plan Act of 2021 (P.L.117-2). | HOUSE OF REPRESENTATIVES,SENATE | 80000 | 0 | 0 | 2021-04-19T10:08:15.297000-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);