lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f5e8f565-e4cb-4e31-9ac5-eff48380eab1", filing_year = 2022 and issue_code = "LBR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2861428 | LONGBOW PUBLIC POLICY GROUP, LLC f5e8f565-e4cb-4e31-9ac5-eff48380eab1 | Q3 | LONGBOW PUBLIC POLICY GROUP, LLC | 401106355 | SIGNATORY WALL AND CEILING CONTRACTORS ALLIANCE | 2022 | third_quarter | LBR | H.R. 4521, the United States Innovation and Competition Act of 2021, an act to provide for a coordinated Federal research initiative to ensure continued United States leadership in engineering biology; Section 2506-"Semiconductor Incentives, subsection (f) Construction Projects." S. 1260, the United States Innovation and Competition Act of 2021, to establish a new Directorate for Technology and Innovation in the National Science Foundation, to establish a regional technology hub program, to require a strategy and report on economic security, science, research, innovation, manufacturing, and job creation, to establish a critical supply chain resiliency program, and for other purposes; Section 2506 Semiconductor Incentives, subsection (f) Construction Projects." H.R. 4346, the Supreme Court Security Funding Act, a bill making appropriations for Legislative Branch for the fiscal year ending September 30, 2022; Division A, CHIPS Act of 2022, Section 102, Creating helpful incentives to produce semiconductors (CHIPS) for America fund and Section 103, Semiconductor Incentives." Implementation of P.L. 117-167, the Supreme Court Security Funding Act; Division A, CHIPS Act of 2022, Section 102, Creating helpful incentives to produce semiconductors (CHIPS) for America fund and Section 103, Semiconductor Incentives." H.R. 8442, the Worker Flexibility and Choice Act, to provide workers with schedule flexibility and choice; entire bill. S. 4174, the Wage Theft Prevention and Wage Recovery Act, legislation to amend the Fair Labor Standards Act of 1938 and the Portal-to-Portal Act of 1947 to prevent wage theft and assist in the recovery of stolen wages, to authorize the Secretary of Labor to administer grants to prevent wage and hour violations; entire bill. Nomination of Jessica Looman to be Administrator of the Wage and Hour Division (PN 2429). Standards applicable to determining who is an employee for purposes of federal labor laws. Department of Labor proposed rule entitled, "Apprenticeship Programs, Labor Standards for Regi… | Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),Occupational Safety & Health Administration (OSHA),SENATE | 50000 | 0 | 0 | 2022-10-07T15:17:30-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);