lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "ed076ecf-cb08-435c-a836-4c9aab00a3a2" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: government_entities, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3238511 | TNC (US) HOLDINGS, INC. ed076ecf-cb08-435c-a836-4c9aab00a3a2 | Q3 | TNC (US) HOLDINGS, INC. | 290718 | TNC (US) HOLDINGS INC | 2024 | third_quarter | COM | Educating members regarding ratings enhancements; Privacy Issues; H.R. 8152 - The American Data Privacy and Protection Act (ADPPA) (117th Cong.), including Artificial Intelligence; S.3195 - Consumer Online Privacy Rights Act (117th Cong.); S.1418 - the Children and Teens Online Privacy Protection Act (COPPA 2.0); S.1409 - the Kids Online Safety Act (KOSA); S.3312 - Artificial Intelligence Research, Innovation, and Accountability Act of 2023; H.R. 8818 - American Privacy Rights Act (APRA); H.R. 815 - Making emergency supplemental appropriations for the fiscal year ending September 30, 2024, and for other purposes, supplemental on Ukraine, Israel and Indo Pacific Region, provisions on data transfers and foreign adversaries; S.2033 - American Innovation and Choice Online Act; H.R. 7890 - Children and Teens Online Protection Act; H.R. 7891 Kids Online Safety Act. | Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,SENATE | 110000 | 0 | 0 | 2024-10-15T14:40:35-04:00 | |
| 3238512 | TNC (US) HOLDINGS, INC. ed076ecf-cb08-435c-a836-4c9aab00a3a2 | Q3 | TNC (US) HOLDINGS, INC. | 290718 | TNC (US) HOLDINGS INC | 2024 | third_quarter | TAX | Implementation of the Tax Cuts and Jobs Act (P.L. No. 115-97); Implementation of the Coronavirus Aid, Relief, and Economic Security Act (P.L. No. 116-136); Implementation of the American Rescue Plan of 2021 (P.L. No 117-2), EBITDA reinstatement legislation; H.R. 3938 - Build It in America Act; S.1232/H.R. 2788 - American Investment in Manufacturing (AIM) Act; H.R. 7024 - Tax Relief for American Families and Workers Act of 2024. | HOUSE OF REPRESENTATIVES,SENATE | 110000 | 0 | 0 | 2024-10-15T14:40:35-04:00 | |
| 3238513 | TNC (US) HOLDINGS, INC. ed076ecf-cb08-435c-a836-4c9aab00a3a2 | Q3 | TNC (US) HOLDINGS, INC. | 290718 | TNC (US) HOLDINGS INC | 2024 | third_quarter | BUD | H.R. 9026 - Commerce, Justice, Science, and Related Agencies Appropriations Act, 2025; S.1701 - Census Improving Data and Enhanced Accuracy (Census IDEA) Act (117th Cong.); S.1584 - Census Federal Advisory Committee on Transparency and Standards (Census FACTS) Act (117th Cong.). | Bureau of the Census,HOUSE OF REPRESENTATIVES,SENATE | 110000 | 0 | 0 | 2024-10-15T14:40:35-04:00 | |
| 3238514 | TNC (US) HOLDINGS, INC. ed076ecf-cb08-435c-a836-4c9aab00a3a2 | Q3 | TNC (US) HOLDINGS, INC. | 290718 | TNC (US) HOLDINGS INC | 2024 | third_quarter | IMM | S.365 - Dream Act of 2023. | HOUSE OF REPRESENTATIVES,SENATE | 110000 | 0 | 0 | 2024-10-15T14:40:35-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);