home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

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

4 rows where filing_uuid = "44d1ec8d-2f26-4d2e-8eaa-5dc6f044d3ae" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 4

  • BUD 1
  • HOM 1
  • INS 1
  • TAX 1

filing_year 1

  • 2015 4

filing_period 1

  • fourth_quarter 4
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
1773750 CROSSROADS STRATEGIES, LLC 44d1ec8d-2f26-4d2e-8eaa-5dc6f044d3ae Q4 CROSSROADS STRATEGIES, LLC 400531586 PROTECTIVE LIFE CORPORATION 2015 fourth_quarter TAX Issues related to corporate tax reform. P.L.114-113, Protecting Americans from Tax Hikes Act of 2015 and Consolidated Appropriations Act, 2016; issues related to tax extenders. HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of 40000   0 0 2016-01-19T12:08:32.457000-05:00
1773751 CROSSROADS STRATEGIES, LLC 44d1ec8d-2f26-4d2e-8eaa-5dc6f044d3ae Q4 CROSSROADS STRATEGIES, LLC 400531586 PROTECTIVE LIFE CORPORATION 2015 fourth_quarter HOM H.R.234, Cyber Intelligence Sharing and Protection Act, S.456, Cyber Threat Sharing Act of 2015, S.754, Cybersecurity Information Sharing Act of 2015, S.961/H.R.2205, Data Security Act of 2015, S.1158, Consumer Privacy Protection Act of 2015, S.177/H.R.1770, Data Security and Breach Notification Act of 2015, S.1027, Data Breach Notification and Punishing Cyber Criminals Act of 2015, H.R.1704, Personal Data Notification and Protection Act of 2015, H.R.1560, Protecting Cyber Networks Act, H.R.1731, National Cybersecurity Protection Advancement Act; cybersecurity issues. HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of 40000   0 0 2016-01-19T12:08:32.457000-05:00
1773752 CROSSROADS STRATEGIES, LLC 44d1ec8d-2f26-4d2e-8eaa-5dc6f044d3ae Q4 CROSSROADS STRATEGIES, LLC 400531586 PROTECTIVE LIFE CORPORATION 2015 fourth_quarter BUD P.L.114-74, Bipartisan Budget Act of 2015; P.L.114-113, Consolidated Appropriations Act, 2016; various issues including financial services, cybersecurity and taxes. HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of 40000   0 0 2016-01-19T12:08:32.457000-05:00
1773753 CROSSROADS STRATEGIES, LLC 44d1ec8d-2f26-4d2e-8eaa-5dc6f044d3ae Q4 CROSSROADS STRATEGIES, LLC 400531586 PROTECTIVE LIFE CORPORATION 2015 fourth_quarter INS Insurance regulation legislation. Implementation of the Dodd-Frank Wall Street Reform and Consumer Protection Act (P.L. 111-203). S.1484, Financial Regulatory Improvement Act of 2015. Implementation of the Department of Labor's Fiduciary Rule. Issues related to Capital Standards. HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of 40000   0 0 2016-01-19T12:08:32.457000-05:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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