lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "ec3fd4e5-4d9f-412f-a67f-9400c8fa8f22" and issue_code = "HOM" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3217635 | CHAMBER OF COMMERCE OF THE U.S.A. ec3fd4e5-4d9f-412f-a67f-9400c8fa8f22 | Q2 | CHAMBER OF COMMERCE OF THE U.S.A. | 38756 | CHAMBER OF COMMERCE OF THE U.S.A. | 2024 | second_quarter | HOM | H.R. 1219, Food and Agriculture Industry Cybersecurity Support Act H.R. 2670/S. 2226, National Defense Authorization Act for Fiscal Year 2024 H.R. 4470, Protecting and Securing Chemical Facilities from Terrorist Attacks Act of 2023 H.R. 4552, Federal Information Security Modernization Act of 2023 H.R. 8070, Servicemember Quality of Life Improvement and National Defense Authorization Act for Fiscal Year 2025 H.R. 8580, Military Construction, Veterans Affairs, and Related Agencies Appropriations Act, 2025 H.R. 8752, Department of Homeland Security Appropriations Act, 2025 H.R. 8774, Department of Defense Appropriations Act, 2025 S. 1631, Safeguarding the Homeland from the Threats Posed by Unmanned Aircraft Systems Act S. 2321, Commerce, Justice, Science, and Related Agencies Appropriations Act, 2024 H.Res. 11, Establishing the Select Committee on the Strategic Competition Between the United States and the Chinese Communist Party H.J.Res. 100 / S.J.Res. 50, Providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Securities and Exchange Commission relating to "Cybersecurity Risk Management, Strategy, Governance, and Incident Disclosure" Draft legislation titled Cybersecurity Regulation Harmonization Act Draft legislation titled Contingency Plan for Critical Infrastructure Act Draft legislation to establish the Cyber Safety Review Board Request for Information, Cybersecurity and Infrastructure Security Agency (CISA), Department of Homeland Security (DHS); Shifting the Balance of Cybersecurity Risk: Principles and Approaches for Secure by Design Software (88 Fed. Reg. 88,104-88,107, December 20, 2023) Notice of Proposed Rulemaking, Coast Guard, Department of Homeland Security (DHS); Cybersecurity in the Marine Transportation System (89 Fed. Reg. 13,404-13,514, February 22, 2024) Proposed rule, Coast Guard, Cybersecurity in the Marine Transportation System (89 Fed. Reg. 13,404, April 9, 2024); Cybersecurity and Infrastructure Security Agency (CISA), notice of … | Bureau of Industry and Security (BIS),Commerce, Dept of (DOC),Defense, Dept of (DOD),Executive Office of the President (EOP),Federal Aviation Administration (FAA),Federal Communications Commission (FCC),Federal Trade Commission (FTC),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Natl Economic Council (NEC),Natl Institute of Standards & Technology (NIST),Natl Security Council (NSC),Natl Telecommunications & Information Administration (NTIA),Office of Management & Budget (OMB),Securities & Exchange Commission (SEC),SENATE,State, Dept of (DOS),U.S. Coast Guard (USCG),White House Office | 13930000 | 0 | 0 | 2024-07-22T14:27:27-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);