lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "15d8cb2c-5bb4-41bb-b09a-4d4bf91cae26" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 830506 | AMERICAN ASSOCIATION OF NURSE ANESTHETISTS 15d8cb2c-5bb4-41bb-b09a-4d4bf91cae26 | Q3 | AMERICAN ASSOCIATION OF NURSE ANESTHETISTS | 1650 | AMERICAN ASSOCIATION OF NURSE ANESTHETISTS | 2009 | third_quarter | HCR | HR 3293 FY 10 Labor HHS Education Appropriations; HR 3200 America's Affordable Health Choices Act of 2009; S 1679 Affordable Health Choices Act; S ____ America's Healthy Future Act of 2009; HR 3082/S 1407 FY 10 Military Construction and Veterans Affairs Appropriations; HR 3326 FY 10 Defense Approps; HR 2053/S 2056 Medicare Anesthesiology Teaching Funding Restoration Act; HR 3151/S 1585 Rural Access to Nurse Anesthesia Services Act of 2009; HR 1932 Medicare Academic Anesthesiology and CRNA Payment Improvement Act of 2007; Title VIII of Public Health Service Act - Reauthorization of Title VIII of the Public Health Service Act (42 USC 296 et seq); S 252/HR 919 Veterans' Medical Personnel Recruitment and Retention Act of 2009; HR 3185/S 1569 A bill to expand our Nation's Advanced Practice Registered Nurse Workforce; HR 756/S 660 A bill to amend the Public Health Service Act with respect to pain care; S 1157 A bill to amend title XVIII of the Social Security Act to protect and preserve access of Medicare beneficiaries in rural areas to healthcare providers under the Medicare program, and for other purposes. | Centers For Medicare and Medicaid Services (CMS),Health & Human Services, Dept of (HHS),Health Resources & Services Administration (HRSA),HOUSE OF REPRESENTATIVES,SENATE | 437000 | 0 | 0 | 2009-10-16T09:18:12-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);