lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "a71b8a36-e494-4af2-bfea-537e64212bef" and issue_code = "EDU" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3206678 | AMERICAN MEDICAL ASSOCIATION a71b8a36-e494-4af2-bfea-537e64212bef | Q2 | AMERICAN MEDICAL ASSOCIATION | 2877 | AMERICAN MEDICAL ASSOCIATION | 2024 | second_quarter | EDU | H.R. 3046, Medical Student Education Authorization Act of 2023, all provisions S. 1403, Medical Student Education Authorization Act of 2023, all provisions H.R. 1202, Resident Education Deferred Interest (REDI) Act, all provisions S. 704, Resident Education Deferred Interest (REDI) Act, all provisions H.R. 2761, Specialty Physicians Advancing Rural Care (SPARC) Act, all provisions S. 705, Specialty Physicians Advancing Rural Care (SPARC) Act, all provisions H.R. 7258, Community Training, Education, and Access for Medical Students (Community TEAMS) Act of 2024, all provisions S. 3968, Community Training, Education, and Access for Medical Students (Community TEAMS) Act of 2024, all provisions S. 3022, IHS Workforce Parity Act of 2023, all provisions H.R. 2389, Resident Physician Shortage Reduction Act of 2023, all provisions S. 1302, Resident Physician Shortage Reduction Act of 2023, all provisions H.R. 751, Fair Access In Residency (FAIR) Act, all provisions H.R. 7050, Substance Use Disorder Workforce Act, all provisions H.R. 4829, Physical Therapist Workforce and Patient Access Act of 2023, provisions relating to National Health Service Corps Loan Repayment program H.R. 7725, To amend the Higher Education Act of 1965 to prohibit graduate medical schools from receiving Federal financial assistance if such schools adopt certain policies and requirements relating to diversity, equity, and inclusion, all provisions S. 4115, Embracing anti-Discrimination, Unbiased Curricula, and Advancing Truth in Education (EDUCATE) Act, all provisions H.R. 8318, Tribal Tax and Investment Reform Act of 2024, provisions relating to student loans H.R. 8235, Rural Physician Workforce Preservation Act, provisions relating to GME H.R. 7855, Rural Residency Planning and Development Act of 2024, all provisions Opioid Workforce Act/draft IHS Health Professions Tax Fairness Act/draft Childrens Hospitals Graduate Medical Education (CHGME) program/FY 2025 funding Pathways to Practice GME cap flexibility Rural health care | HOUSE OF REPRESENTATIVES,SENATE | 5120000 | 0 | 0 | 2024-07-19T15:40:45-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);