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 = "fdee3e19-ebe9-41ce-b0af-31e99c1957c5" 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

  • 2012 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
1344970 AMERICAN ACADEMY OF FAMILY PHYSICIANS fdee3e19-ebe9-41ce-b0af-31e99c1957c5 Q4 AMERICAN ACADEMY OF FAMILY PHYSICIANS 1342 AMERICAN ACADEMY OF FAMILY PHYSICIANS 2012 fourth_quarter MMM HR3667, GME Modernization pilot program authorization. HR5707, Repeal Medicare SGR; implement primary care centric payment and care system; offset with Overseas Operations Fund, Prevent Medicare physician pay cut effective January 1, 2013. HR5, Protecting Access to Healthcare Act, Medical liability reform, support extension of current payment rate for Medicare. HR5979 Medicaid Accountability and Care Act of 2012, Prevent per capita cap reform of the Medicaid program. HR6688, Averting the Fiscal Cliff Act, American Tax Payer Relief Act, Prevent SGR sequester Medicare payment cuts, protect Medicaid parity primary care rates. Avoid sequester cuts to title VII primary care training grants, GME, AHRQ, NHSC, Prevention and public health trust funds, stop the 2% cut due January 2, 2013. No Bill Number, Medicaid parity for primary care, Ensuring payments for true primary care physicians. No Bill Number, Medicare physician payment reform of the Sustainable Growth Rate, Medicare physician pay cuts scheduled for 2013. No Bill Number, Meaningful use meetings, Medical Home and Health Care Reform. No Bill Number, Electronic Health Records, Meaningful use funds and quality improvement. No Bill Number, Medicaid parity for primary care, Ensuring payments for true primary care physicians. No Bill Number, Primary Care meetings. Medical Home and Health Care Reform. No Bill Number, Medicaid payment for primary care, Support for Medicaid payment for primary care services. No Bill Number, Medicaid Expansion, Expansion of access to health care coverage for uninsured and underinsured individuals. No Bill Number, Patient Centered Medical Homes, Increase support for the model. Agency for Healthcare Research & Quality (AHRQ),Centers For Medicare and Medicaid Services (CMS),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),Health Resources & Services Administration (HRSA),HOUSE OF REPRESENTATIVES,Medicare Payment Advisory Commission (MedPAC),Office of Management & Budget (OMB),Office of Natl Drug Control Policy (NDCP),SENATE,Veterans Affairs, Dept of (VA),White House Office   633350 0 0 2013-01-18T15:11:23.627000-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 467.27ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API