lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f00a7cc6-3c3c-4b3c-813d-bfa063960c41", filing_year = 2014 and issue_code = "HCR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1612875 | UNITED SPINAL ASSOCIATION f00a7cc6-3c3c-4b3c-813d-bfa063960c41 | Q3 | UNITED SPINAL ASSOCIATION | 12994 | UNITED SPINAL ASSOCIATION | 2014 | third_quarter | HCR | Discussed the Suicide Prevention Research Innovation Act (S. 2035). Supported the Mental Health First Aid Act of 2013 (S. 153). Signed on to a letter to the U.S. Department of Transportation and the U.S. Department of Health and Human Services asking for all modes of public transportation to announce the Suicide Prevention Lifeline for passengers on World Suicide Prevention Day. United Spinal highlighted improved clinical outcomes for rehabilitative care at in-patient rehab facilities over skilled nursing facilities for individuals with spinal cord injuries and other conditions such as brain injury and stroke. United Spinal discussed the 21st Century Cure initiative of Chairman Fred Upton (R-MI-6th) focusing on patient centered care. United Spinal supports Lifespan Respite Care Reauthorization Act (H.R.4683), a free-standing bill that reauthorizes the Lifespan Respite Care Program at $15 million a year for five years. United Spinal discussed the need to provide clarity and certainty for appropriate, risk-based oversight of health information technology.United Spinal supports HR 3077, the TeleMed Act, which allows Medicare providers licensed in one state to provide telemedicine services to certain Medicare beneficiaries across state lines. CMS has proposed a rule to expand prior authorization for DME affecting power wheelchairs, lower limb prostheses and negative pressure wound therapy. United Spinal is in general support of prior authorization is a process that certifies DME suppliers with CMS before they provide equipment and services to Medicare beneficiaries. United Spinal highlighted improved clinical outcomes for rehabilitative care at in-patient rehab facilities over skilled nursing facilities for individuals with spinal cord injuries and other conditions such as brain injury and stroke. United Spinal supports Ensuring Access to Quality Complex Rehabilitation Technology Act/HR 942/ S 948. which creates a separate benefit under Medicare for customized equipment known as complex rehab technology needed by … | Defense, Dept of (DOD),Education, Dept of,Federal Communications Commission (FCC),Federal Emergency Management Agency (FEMA),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Labor, Dept of (DOL),Office of Management & Budget (OMB),Office of Personnel Management (OPM),SENATE,Transportation, Dept of (DOT),White House Office | 75000 | 0 | 0 | 2014-10-22T11:25:34.103000-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);