lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where filing_uuid = "aa2d4b4e-b8fe-43df-8b28-88af15bbfa47" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2817470 | THE WESSEL GROUP INCORPORATED aa2d4b4e-b8fe-43df-8b28-88af15bbfa47 | Q2 | THE WESSEL GROUP INCORPORATED | 308070 | MCWANE, INC. | 2022 | second_quarter | MAN | National and homeland security implications of declining manufacturing base; Issues surrounding the development of critical infrastructure manufacturing base; Implementation of Executive Order 14005 (Executive Order on Ensuring the Future Is Made in All of America by All of Americas Workers), Executive Order 14008 (Tackling the Climate Crisis at Home and Abroad), Executive Order 14017 (Americas Supply Chains), and Executive Order 14057, (Catalyzing Clean Energy Industries and Jobs Through Federal Sustainability; Buy America policies and implementation of such policies, and funding levels, for infrastructure programs, including the Clean Water State Revolving Fund, Drinking Water State Revolving Fund, Water Infrastructure Financing and Innovation Act program, Rural Utilities Service, and Community Development Block Grant Program in bills including potential energy and climate legislation including the CLEAN Future Act (HR 1512) and LIFT America Act (HR 1848), the Drinking Water and Wastewater Infrastructure Act of 2021 (S 914), the Water Quality Protection and Job Creation Act (HR 1915), the INVEST in America Act (HR 3684), FY2022 Interior, Environment, and Related Agencies Appropriations Act (HR 4372), FY2022 Agriculture, Rural Development, Food and Drug Administration, and Related Agencies Appropriations Act (HR 4356), FY2022 Transportation, Housing and Urban Development, and Related Agencies Appropriations Act (HR 4550), the Infrastructure Investment and Jobs Act (PL 117-44), and potential budget reconciliation legislation including the Build Back Better Act (HR 5376); Treatment of ductile iron utility poles in disaster and mitigation legislation; Legislative efforts to promote the rebuilding and expansion of infrastructure and promoting the use of domestically produced materials; Issues surrounding infrastructure investment programs, and support for domestic procurement policies, in potential economic stimulus legislation including the American Rescue Plan Act of 2021 (PL 117-2); Use of domestic content in FEM… | Energy, Dept of,Executive Office of the President (EOP),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 40000 | 0 | 0 | 2022-07-12T16:26:03-04:00 | |
| 2817471 | THE WESSEL GROUP INCORPORATED aa2d4b4e-b8fe-43df-8b28-88af15bbfa47 | Q2 | THE WESSEL GROUP INCORPORATED | 308070 | MCWANE, INC. | 2022 | second_quarter | TRD | Proposals to address circumvention of existing antidumping and countervailing duty orders | Commerce, Dept of (DOC) | 40000 | 0 | 0 | 2022-07-12T16:26:03-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);