lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where filing_uuid = "d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2642822 | CROSSROADS STRATEGIES, LLC d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef | Q2 | CROSSROADS STRATEGIES, LLC | 400531586 | SSA MARINE | 2021 | second_quarter | TRA | Infrastructure issues related to ports and infrastructure funding; FY2022 Transportation, Housing and Urban Development, and Related Agencies Appropriations Act; H.R.1319, American Rescue Plan Act of 2021 (P.L.117-2); H.R.3684, INVEST in America Act. Discussions related to reducing carbon footprint at U.S. ports. | HOUSE OF REPRESENTATIVES,SENATE | 40000 | 0 | 0 | 2021-07-18T11:05:36.017000-04:00 | |
| 2642823 | CROSSROADS STRATEGIES, LLC d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef | Q2 | CROSSROADS STRATEGIES, LLC | 400531586 | SSA MARINE | 2021 | second_quarter | TAX | Issues related to the Harbor Maintenance Program, the Port Infrastructure Investment Program, and international tax issues. | HOUSE OF REPRESENTATIVES,SENATE | 40000 | 0 | 0 | 2021-07-18T11:05:36.017000-04:00 | |
| 2642824 | CROSSROADS STRATEGIES, LLC d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef | Q2 | CROSSROADS STRATEGIES, LLC | 400531586 | SSA MARINE | 2021 | second_quarter | TRD | Issues related to international trade, including cargo volume, tariff exemptions, and throughput. | HOUSE OF REPRESENTATIVES,SENATE | 40000 | 0 | 0 | 2021-07-18T11:05:36.017000-04:00 | |
| 2642825 | CROSSROADS STRATEGIES, LLC d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef | Q2 | CROSSROADS STRATEGIES, LLC | 400531586 | SSA MARINE | 2021 | second_quarter | MAR | Issues related to Port Infrastructure, the Federal Maritime Commission (FMC), and port operations including cleaning measures and Personal Protective Equipment (PPE); H.R.1319, American Rescue Plan Act of 2021 (P.L.117-2). | HOUSE OF REPRESENTATIVES,SENATE | 40000 | 0 | 0 | 2021-07-18T11:05:36.017000-04:00 | |
| 2642826 | CROSSROADS STRATEGIES, LLC d9a105bc-e2d5-46e0-9fc7-a3bcd68f6aef | Q2 | CROSSROADS STRATEGIES, LLC | 400531586 | SSA MARINE | 2021 | second_quarter | LBR | Issues related to labor including multi-employer pension plans and vaccine distribution; Issues relating to COVID-19 economic relief and COVID-19 liability protection; H.R.1319, American Rescue Plan Act of 2021 (P.L.117-2). | HOUSE OF REPRESENTATIVES,SENATE | 40000 | 0 | 0 | 2021-07-18T11:05:36.017000-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);