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 = "caa4eca6-7b5b-4568-8224-eacedd4abc90" 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
  • HCR 1
  • HOM 1
  • MMM 1

filing_year 1

  • 2023 4

filing_period 1

  • first_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
2958598 AMERICAN SOCIETY FOR RADIATION ONCOLOGY caa4eca6-7b5b-4568-8224-eacedd4abc90 1A AMERICAN SOCIETY FOR RADIATION ONCOLOGY 57737 AMERICAN SOCIETY FOR RADIATION ONCOLOGY 2023 first_quarter HCR FY2024 LHHS Appropriations bill-funding for NIH/NCI Access to radioactive isotopes Support to ensure that advances in biomedical research impacting patient care are not compromised by any policies imposed on the medical use and research applications of cesium chloride Support for NRC Commissioner nominee to have medical background Radiation Oncology reimbursement Radiation Oncology safety Cancer Moonshot Initiative Legislation to increase transparency in the prior authorization process Efforts to educate legislators about unintended consequences associated with rate setting for health care services Curb surprise billing for patients Preserve current training and experience requirements for radiopharmaceuticals Support for advancing health equity and eliminating health care disparities Support current NRC medical event reporting regulations and patient safety protocols without additional requirements for extravasations Executive Office of the President (EOP),Food & Drug Administration (FDA),HOUSE OF REPRESENTATIVES,Nuclear Regulatory Commission (NRC),SENATE   159806 0 0 2023-04-13T13:09:40-04:00
2958599 AMERICAN SOCIETY FOR RADIATION ONCOLOGY caa4eca6-7b5b-4568-8224-eacedd4abc90 1A AMERICAN SOCIETY FOR RADIATION ONCOLOGY 57737 AMERICAN SOCIETY FOR RADIATION ONCOLOGY 2023 first_quarter MMM Oppose restrictive prior authorization practices Support for structural changes that lead to delivering high quality care for patients while increasing efficiencies and promoting Medicare sustainability; oppose radiation oncology benefit managers Support for reforming the way Medicare pays for radiation oncology services by tying payments to quality and value Support for waiving budget neutrality adjustments with evaluation and management code changes Support for protecting access to care for Medicare patients Oppose physician fee schedule cuts due to clinical labor price updates Support for H.R. 1202 for resident education deferred interest Centers For Medicare and Medicaid Services (CMS),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Office of Management & Budget (OMB),SENATE   159806 0 0 2023-04-13T13:09:40-04:00
2958600 AMERICAN SOCIETY FOR RADIATION ONCOLOGY caa4eca6-7b5b-4568-8224-eacedd4abc90 1A AMERICAN SOCIETY FOR RADIATION ONCOLOGY 57737 AMERICAN SOCIETY FOR RADIATION ONCOLOGY 2023 first_quarter HOM Support for protecting access to medical isotopes used in cancer treatments such as brachytherapy and stereotactic radio surgery Support access to radioactive isotopes HOUSE OF REPRESENTATIVES,Nuclear Regulatory Commission (NRC),SENATE   159806 0 0 2023-04-13T13:09:40-04:00
2958601 AMERICAN SOCIETY FOR RADIATION ONCOLOGY caa4eca6-7b5b-4568-8224-eacedd4abc90 1A AMERICAN SOCIETY FOR RADIATION ONCOLOGY 57737 AMERICAN SOCIETY FOR RADIATION ONCOLOGY 2023 first_quarter BUD Support legislation to increase the budget for the National Institutes of Health, National Cancer Institute and the Centers for Disease Control and Prevention for fiscal year 2024 Support for increased funding for radiation therapy cooperative groups within the National Cancer Institute Support for the National Institutes of Health to recognize radiation oncology as an individual specialty in reporting systems to create more transparency of federal appropriations Ensure that radiological materials used for the diagnosis and treatment of patients are secured and access to care preserved Cancer Moonshot Initiative Support for ARPA-H to support innovative cancer treatments Support for initiatives to increase diversity in clinical trials Support for DOD lung cancer research program funding HOUSE OF REPRESENTATIVES,Natl Institutes of Health (NIH),SENATE   159806 0 0 2023-04-13T13:09:40-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 9.47ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API