lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "3dc971bd-686a-4e90-8ca2-e72662e3dc4f" and issue_code = "MMM" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: received_date (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2192664 | AMERICAN ACADEMY OF OTOLARYNGOLOGY-HEAD AND NECK SURGERY 3dc971bd-686a-4e90-8ca2-e72662e3dc4f | Q3 | AMERICAN ACADEMY OF OTOLARYNGOLOGY-HEAD AND NECK SURGERY | 1386 | AMERICAN ACADEMY OF OTOLARYNGOLOGY-HEAD AND NECK SURGERY | 2018 | third_quarter | MMM | H.R. 2276/S. 2575, the "Audiology Patient Choice Act," all provisions. Medicare physician payment reform and implementation of the Medicare and CHIP Reauthorization Act of 2015, in general. Medicare physician payment reform and implementation of the Medicare and CHIP Reauthorization Act of 2015 related to the cost domain of the Merit-based Incentive Payment System. H.R. 1156, the "Patient Access to Higher Quality Health Care Act of 2017," all provisions. H.R. 849/S. 260, the "Protecting Seniors' Access to Medicare Act of 2017," all provisions. Comments outlining concern with the November 2017 Medicare Payment Advisory Commission (MedPAC) discussion titled, "Rebalancing the physician fee schedule towards primary care services." Issues pertaining to scope of practice, in general. Comments urging the Centers for Medicare and Medicaid Services (CMS) to reduce the 2018 Merit-based Incentive Payment System (MIPS) reporting period from a calendar year to a minimum of 90 consecutive days. Comments on the Medicare Hospital IPPS FY 2019 Proposed Rule communicating concerns about the agencys plans to remove the Public Health and Clinical Data Exchange objective by 2022. Comments urging leaders of the U.S. Senate Committee on Finance not to co-sponsor and oppose any efforts to advance the "Audiology Patient Choice Act" (S. 2575). Comments to the Centers for Medicare and Medicaid Services (CMS) regarding Medicare's designation of CPT Code 31241 Nasal/sinus endoscopy, surgical; with ligation of sphenopalatine artery. Coalition letter to leaders of the U.S. House Committees on Ways & Means and Energy & Commerce regarding the Medicare Appropriate Use Criteria (AUC) Program for Advanced Diagnostic Imaging. Coalition letter to leaders of the U.S. Senate Committee on Finance regarding the Medicare Appropriate Use Criteria (AUC) Program for Advanced Diagnostic Imaging. Coalition letter to U.S. House Committees on Ways & Means and Energy and Commerce and U.S. Senate Committee on Finance regarding payment cuts for clini… | Centers For Medicare and Medicaid Services (CMS),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Medicare Payment Advisory Commission (MedPAC),SENATE | 200000 | 0 | 0 | 2018-10-18T16:08:53.833000-04:00 |
Advanced export
JSON shape: default, array, newline-delimited, object
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);