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

1 row where filing_uuid = "a8f0b407-1b7c-4d7d-9b08-e3edc8edd43f" and issue_code = "HCR" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • HCR · 1 ✖

filing_year 1

  • 2021 1

filing_period 1

  • second_quarter 1
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
2637021 AMERICAN BENEFITS COUNCIL a8f0b407-1b7c-4d7d-9b08-e3edc8edd43f Q2 AMERICAN BENEFITS COUNCIL 4675 AMERICAN BENEFITS COUNCIL 2021 second_quarter HCR Legislative Employer-sponsored health coverage - robust COVID-19 testing and vaccine distribution, COBRA subsidies, telehealth, primary care and worksite clinics and more comprehensive coverage of chronic disease prevention measures American Rescue Plan Act of 2021 - H.R. 1319, (Public Law 117-2) FY21 Budget Reconciliation Bill - Federal subsidies for COBRA coverage FY2022 budget proposal Treat and Reduce Obesity Act - S. 596/H.R. 1577 Telehealth Expansion Act - S. 1706 FAMILY Act - H.R. 804/S.248 - Paid Family Leave Administration Infrastructure Proposal/Outline Dependent Care Flexible Spending Accounts (FSAs) Health Flexible Spending Accounts (FSAs) Health Savings Accounts (HSAs) Quality, Cost & Transparency - Lower Health Care Costs Act (S. 1895, 116th Congress) Mental health & behavioral health care American Families Plan - national comprehensive paid family and medical leave program Building an Economy for Families Act -universal paid family and medical leave Public health insurance option - Request for Information (RFI) Prescription drug legislation Elijah E. Cummings Lower Dru Costs Now Act - H.R. 3 Regulatory Consolidated Appropriations Act 2021 (CAA) - H.R. 133 (Public Law 116-260) - employer-sponsored health, paid leave, other benefit plans (flexible spending arrangements), surprise billing, transparency, and mental health parity) - implementation DOL/Treasury/HHS - Frequently Asked Questions (FAQs) re mental health parity requirements for group health plans and insurers under the CAA HHS - proposed amendments governing privacy standards under the Health Insurance Portability and Accountability Act (HIPAA) HHS - Notice of Benefits and Payment Parameters (NBPP) Treasury/IRS/DOL - implementation guidance on COBRA subsidies under the CAA Treasury/DOL/HHS - implementation of surprise billing provisions under the CAA DOL - submission of data to state all-payer claims databases by self-insured employers; State All Payer Claims Database Advisory Committee under the CAA EEOC - vaccine incentive a… Centers For Medicare and Medicaid Services (CMS),Equal Employment Opportunity Commission (EEOC),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Internal Revenue Service (IRS),Labor, Dept of (DOL),Pension Benefit Guaranty Corporation (PBGC),Securities & Exchange Commission (SEC),SENATE,Treasury, Dept of,White House Office   324796 0 0 2021-07-14T14:04:08.243000-04: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 60.522ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API