lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "91dec2df-809c-4a05-9dba-fa263b2cb4aa" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3147032 | AMERICAN PSYCHOLOGICAL ASSOCIATION SERVICES INC.(FKA AMERICAN PSYCHOLOGICAL ASSN 91dec2df-809c-4a05-9dba-fa263b2cb4aa | Q1 | AMERICAN PSYCHOLOGICAL ASSOCIATION SERVICES INC.(FKA AMERICAN PSYCHOLOGICAL ASSN | 60138 | AMERICAN PSYCHOLOGICAL ASSOCIATION SERVICES INC.(FKA AMERICAN PSYCHOLOGICAL ASSN | 2024 | first_quarter | MMM | H.R. 2400 The Reentry Act H.R. 2474, the Strengthening Medicare for Patients and Providers Act H.R. 3074/S. 971 The Due Process Continuity of Care Act H.R. 4892, Medicaid Bump Act S. 1378/ H.R 5819 COMPLETE Care Act S.669 - Increasing Mental Health Options Act of 2023 Draft PREVENT Community Violence Act S.2511, the ADAPT Act Medicare coverage and payment policies affecting access to psychological services under the physician fee schedule Medicare coverage and payment policies related to integrated primary and behavioral health care service delivery, complex care services, and access to care for dual eligibles Response to CMS proposed rules concerning Medicare Advantage plans Response to CMS proposed rules governing fee-for-service Medicaid, managed care Medicaid, and CHIP (6/28) Move CMS to encourage innovation of and expand access to non-opioids for Medicare Part D beneficiaries Respond to CMS proposed rule concerning Medicare Inpatient Psychiatric Facilities Prospective Payment System S. 2407 / H.R. 4818 - The Treat and Reduce Obesity Act S.3430 Better Mental Health Care, Lower-Cost Drugs, and Extenders Act of 2023 S. 3921 Medicaid Bump Act Letter to CMS re: updating Medicaid provider enrollment guidance Letter to CMS re: maintaining current provider address privacy for telehealth services | Centers For Medicare and Medicaid Services (CMS),HOUSE OF REPRESENTATIVES,SENATE | 400000 | 0 | 0 | 2024-04-16T15:37:16-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);