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 = "6d9065cd-a0cf-4e8a-9fa1-daee10c7c350" 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

  • 2025 1

filing_period 1

  • fourth_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
3491148 HUMAN RIGHTS CAMPAIGN 6d9065cd-a0cf-4e8a-9fa1-daee10c7c350 Q4 HUMAN RIGHTS CAMPAIGN 18901 HUMAN RIGHTS CAMPAIGN 2025 fourth_quarter HCR Ending Discrimination Against Gay and Bisexual Blood and Tissue Donors Funding for HIV/AIDS Education, Prevention, and Research Funding for and Education Regarding Comprehensive Sexual Health Education Implementation of Section 1557 Nondiscrimination regulations Implementation and Protection of the Patient Protection and Affordable Care Act Labor, HHS, and Education Appropriations PrEP Insurance Coverage Title X Family Planning Funding Access to Gender Affirming Care Employment Benefits Conversion Therapy H.R. 2197: No 340B Savings for Transgender Care Act H.R. 2107: To amend title III of the Public Health Service Act to reauthorize the program of payments to children's hospitals that operate graduate medical education programs, and for other purposes. S. 312: Jamie Reed Protecting Our Kids from Child Abuse Act H.R. 742: PROTECTS Act of 2025 H.R. 653; S. 209: Protecting Minors from Medical Malpractice Act of 2025 H.R. 498: Do No Harm in Medicaid Act H.R. 2487: To improve access to evidence-based, lifesaving health care for transgender people, and for other purposes. S. 422 Right to Contraception Act H.R. 2387: No Harm Act H.R. 3757: Pride in Mental Health Act of 2025 S. 2035: Protect IVF Act H.R. 3811: The Elder Pride Protection Act of 2025 H.R. 3688: Protecting Children from Experimentation Act of 2025 S. 1774: Protecting Minors in Federal Health Plans Act H.R. 3527; S. 1910: Real Education for Healthy Youth H.R. 5434; S. 2826: 988 LGBTQ+ Youth Access Act of 2025 H.R. 5390; S. 2823: FAMILY Act H.R. 4648; S. 2408: Access to Fertility Treatment and Care Act H.R. 3492: Protect Childrens Innocence Act H.R. 5483: Chloe Cole Act H.R. 4953: Gender-Affirming Child Abuse Prevention Act H.R. 4618: Jamie Reed Protecting Our Kid from Child Abuse Act S.2907 A bill to prohibit health care professionals, hospitals, or clinics from participating in the chemical or surgical mutilation of a child and to provide a private right of action for children and the parents of children whose healthy body parts have been damaged by medical… Centers For Disease Control & Prevention (CDC),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),Health Resources & Services Administration (HRSA),HOUSE OF REPRESENTATIVES,Natl Institutes of Health (NIH),SENATE,Veterans Affairs, Dept of (VA),White House Office   216181 0 0 2026-01-16T17:50:20-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 56.101ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API