home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

3 rows where filing_uuid = "2cccd489-e899-4c6c-8bc8-b8e966566bbf" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 3

  • EDU 1
  • HCR 1
  • PHA 1

filing_year 1

  • 2020 3

filing_period 1

  • first_quarter 3
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
2423828 SOUTHERN ILLINOIS UNIVERSITY 2cccd489-e899-4c6c-8bc8-b8e966566bbf Q1 SOUTHERN ILLINOIS UNIVERSITY 6564 SOUTHERN ILLINOIS UNIVERSITY 2020 first_quarter EDU Corresponded with Senator Durbins Congressman LaHood & Congressman Bosts office on a meeting for med students who were in DC for a conference on March 5-7. HOUSE OF REPRESENTATIVES   11250 0 0 2020-04-13T11:56:23.847000-04:00
2423829 SOUTHERN ILLINOIS UNIVERSITY 2cccd489-e899-4c6c-8bc8-b8e966566bbf Q1 SOUTHERN ILLINOIS UNIVERSITY 6564 SOUTHERN ILLINOIS UNIVERSITY 2020 first_quarter PHA Met with Congressman LaHood on Feb 20 at the Simmons Cancer Institute to talk about 340B pricing and other cancer-related issues including Simmons outreach to the African American community to discuss cancer testing and prevention. HOUSE OF REPRESENTATIVES   11250 0 0 2020-04-13T11:56:23.847000-04:00
2423830 SOUTHERN ILLINOIS UNIVERSITY 2cccd489-e899-4c6c-8bc8-b8e966566bbf Q1 SOUTHERN ILLINOIS UNIVERSITY 6564 SOUTHERN ILLINOIS UNIVERSITY 2020 first_quarter HCR A letter was sent out to members Congressman LaHood, Bost and Davis on the COVID-19 emergency legislation that Congress is working on. On behalf of the Southern Illinois University System, I ask for urgent assistance for Illinois students and universities in the COVID-19 emergency legislation that Congress is currently working on. While we are still assembling data, we know already that the financial impact of the COVID-19 pandemic will be substantial. For example: Southern Illinois University Carbondale estimates a potential of $22.3 million in lost revenue, which includes refunding housing and dining costs and other costs which are developing as the pandemic continues. Southern Illinois University Edwardsville estimates that refunding housing and dining costs to students who are going to continue their studies from home and other potential costs could cost approximately $20.8 million. Accordingly, we ask for the following relief: 1.Make public universities eligible for the refundable tax credits included in the Families First Coronavirus Response Act; 2.Emergency funding to financially stabilize universities in responding to COVID-19 and to directly support students; While we are pleased that the draft bill released by Senate Majority Leader McConnell includes an Education Stabilization Fund, it only provides $6 billion for higher education-far less than the $50+ billion request from the higher ed community; 3.Technology funding to support move to distance education; 4.Regulatory flexibility to protect students; 5.Access to capital through low- or no-interest loans; 6.Regulatory flexibility and resources on research issues. Further information on items 2-5 is in this document compiled by our leading higher education associations-the American Council on Education, the Association of Public and Land-grant Universities, and the Association of American Universities-while this letter discusses item 6. We thank you for all that youre doing during this challenging time, and appreciate your considerin… HOUSE OF REPRESENTATIVES   11250 0 0 2020-04-13T11:56:23.847000-04:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 27.879ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API