lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where filing_uuid = "84da4e7b-84d1-447d-b2be-2ce13151ee02" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2307399 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | DEF | FY 20 National Defense Authorization Act (H.R. 2500/S. 1790) - defense science, technology, and medical research | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307400 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | SCI | Combating Sexual Harassment in Science Act of 2018 (H.R. 36) - all provisions Engineering Biology Research & Development Act (no bill number) - all provisions | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307401 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | TEC | Government Spectrum Valuation Act (S. 1626) - provisions relating to spectrum used for scientific research | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307402 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | IMM | Immigration regulations pertaining to student and employment visas American Dream and Promise Act of 2019 (H.R. 6) | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307403 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | BUD | FY 20 Labor/HHS/Education Appropriations (H.R. 2740) - funding for medical research, student aid, education research, and international education FY 20 Interior & Environment Appropriations (H.R. 3055) - funding for humanities, life sciences, and medical research FY 20 Energy/Water Appropriations (H.R. 2740) - funding for scientific research FY 20 Commerce/Justice/Science Appropriations (H.R. 3055) - funding for scientific research FY 20 Defense Appropriations bill (H.R. 2749) - funding for scientific research FY 20 Transportation & HUD Appropriations (H.R. 3055) - funding for transportation research | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307404 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | TAX | Tax Cuts and Jobs Act (Public Law 115-97) - tax proposals re: charitable giving, college affordability, tax-exempt bond financing, employee benefits, and endowments Economic Mobility Act (H.R. 3300) - provisions re: nonprofit parking tax | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-04:00 | |
| 2307405 | BOSTON UNIVERSITY 84da4e7b-84d1-447d-b2be-2ce13151ee02 | Q2 | BOSTON UNIVERSITY | 57054 | BOSTON UNIVERSITY | 2019 | second_quarter | EDU | Higher Education Act reauthorization - student aid, graduate education, accreditation, international education, reporting requirements, Title IX, and college preparatory programs | Education, Dept of,Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,SENATE | 100000 | 0 | 0 | 2019-07-17T13:51:22.820000-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);