lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "da7cab3e-e3d4-4f29-90c6-99c0ec415c3a" and issue_code = "BUD" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 639480 | UNIVERSITY OF MICHIGAN da7cab3e-e3d4-4f29-90c6-99c0ec415c3a | Q2 | UNIVERSITY OF MICHIGAN | 39473 | UNIVERSITY OF MICHIGAN | 2008 | second_quarter | BUD | HConRes 312/SConRes 70 "Congressional Budget Resolution for FY 2009" sections pertaining to NIH, NIST, NASA, NSF, Education Labor/HHS appropriations Department of HHS pertaining to Public Health Service, Title VII & VIII programs, CDC, NIOSH, NIH, National Institute of Nursing Research. Department of Education pertaining to student financial aid, international education programs, graduate education, grant opportunities; Corporation for Public Broadcasting S. 3182 -Science, State, Commerce, Appropriations for FY 2009 - Department of Commerce sections pertaining to the National Oceanic Atmospheric Administration's research programs and protection of external research funds at NOAA; and University Centers funded through EDA; Public Telecommunications Facilities Program, Trade Adjustment Assistance for firms, Auto Plant closing project at EDA; NASA research programs, including Space Grant; NSF research and educational programs Department of Defense Appropriations for FY 2009 - sections pertaining to basic and applied defense research, indirect costs for research grants and TACOM Robotics program; medical research; support for School of Engineering at UM-Dearborn Military and Veteran's Affairs FY 2009 - pertaining to Ann Arbor VA partnership Energy & Water FY 2009 - Department of Energy programs, specifically the Office of Science; Krell fellowships, ARPA-E, Energy Frontier Research Centers Interior and Environment FY 2009 - sections pertaining to National Endowment for the Arts, National Endowment for the Humanities HR 2642 - FY 2008 Supplemental Appropriations pertaining to NSF and DOE Office of Science | Commerce, Dept of (DOC),Defense, Dept of (DOD),Economic Development Administration,Education, Dept of,Energy, Dept of,Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Natl Science Foundation (NSF),SENATE,Veterans Affairs, Dept of (VA) | 190000 | 0 | 0 | 2008-07-18T14:26:28-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);