lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f8ad4cc5-2dae-42da-b620-e3c8728db40f" and issue_code = "TRD" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2774842 | WORLDWIDE ERC f8ad4cc5-2dae-42da-b620-e3c8728db40f | Q1 | WORLDWIDE ERC | 401105673 | WORLDWIDE ERC | 2022 | first_quarter | TRD | US Innovation and Competition Act (S. 1260) Establishes a Directorate for Technology and Innovation in the National Science Foundation (NSF) and establishes various programs and activities. The Office of Science and Technology Policy shall annually develop a strategy for the federal government to improve national competitiveness in science, research, and innovation to support the national security strategy. The Department of Commerce shall (1) establish a supply chain resiliency and crisis response program to address supply chain gaps and vulnerabilities in critical industries, (2) designate regional technology hubs to facilitate activities that support regional economic development that diffuses innovation around the United States, and (3) award grants to facilitate development and implementation of comprehensive regional technology strategies. Extends through FY2026 the Manufacturing USA Program and expands such program to support innovation and growth in domestic manufacturing. America COMPETES Act (H.R. 4521) - Lobbied to include language to protect the personal data of military personnel and transferees who are shipping their household goods to the U.S. Protects personally identifiable information (PII) by directing the Director of the CBP to remove the PII of individuals prior to making manifest data available for sale. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2022-04-15T09:27:59-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);