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 = "7da19b37-e3e0-4e4e-bf99-c95403e38885" and issue_code = "MMM" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • MMM · 1 ✖

filing_year 1

  • 2022 1

filing_period 1

  • first_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
2787575 ASSOCIATION FOR CLINICAL ONCOLOGY 7da19b37-e3e0-4e4e-bf99-c95403e38885 Q1 ASSOCIATION FOR CLINICAL ONCOLOGY 401105592 ASSOCIATION FOR CLINICAL ONCOLOGY 2022 first_quarter MMM HR 315 - Medicare Sequester Moratorium Act - relief from Medicare sequester HR 1332/ S 368 -Telehealth Modernization Act - permanent repeal of Medicare geographic and originating site restrictions HR 1946/S 1873- Multi Cancer Early Detection Coverage and Screening Act - provide for Medicare coverage of multi-cancer early detection screening tests HR 1577/S 596 - Treat and Reduce Obesity Act of 2021 - expands Medicare coverage of intensive behavioral therapy for obesity HR 2347/S 2691 - Strengthening the Vaccines for Children Program Act of 2021 - ensure adequate access to vaccines under the Medicaid program and the Vaccines for Children program S 1287 - REFUND Act of 2021 - provide refunds for certain single dose vial drugs HR 2903/S 1512- CONNECT for Health Act of 2021 - expand access to telehealth services HR 3173/S 3018- Improving Seniors Timely Access to Care Act of 2021- stablishes several requirements and standards relating to prior authorization processes under Medicare Advantage plans HR 3447 - Permanency for Audio-Only Telehealth Act- expand accessibility to certain telehealth services under Medicare HR 4110/S 3656- Reducing Hereditary Cancer Act- provide hereditary cancer genetic testing HR 3089/S 1544- Accelerating Kids' Access to Care Act- streamline enrollment under the Medicaid program of certain providers across State lines HR 1978/S 912- Protecting Seniors Through Immunization Act of 2021- improve Medicare coverage of vaccinations HOUSE OF REPRESENTATIVES,SENATE   213980 0 0 2022-04-19T16:58:57-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 56.539ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API