lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "fa8ce2be-8300-4b40-b91c-e6d08452a4e5" and issue_code = "TEC" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3238124 | NATIONAL RURAL ELECTRIC COOPERATIVE ASSOCIATION (NRECA) fa8ce2be-8300-4b40-b91c-e6d08452a4e5 | Q3 | NATIONAL RURAL ELECTRIC COOPERATIVE ASSOCIATION (NRECA) | 28515 | NATIONAL RURAL ELECTRIC COOPERATIVE ASSOCIATION (NRECA) | 2024 | third_quarter | TEC | Issues related to smart grid connectivity Issues related to FCC spectrum auctions Issues related to Middle Mile program at NTIA Issues related to the BEAD Program at NTIA Issues related to rural broadband deployment USDA's ReConnect Program Issues related to improving broadband availability maps Issues related to the implementation of IIJA broadband programs Issues related to broadband permitting Issues related to RDOF implementation Issues related to pole attachments Issues related to pole replacements Issues related to middle mile broadband H.R. 3565 - the Spectrum Auction Reauthorization Act H.R. 3557 - the American Broadband Deployment Act Issues related to broadband affordability Issues related to the FCCs Universal Service Fund Issues related to the FCCs Affordable Connectivity program CAREERS Act Broadband Industry Development Act S.3565 - the Affordable Connectivity Program Extension Act Issues related to Facilitating Optimal and Rapid Expansion Siting of Telecommunications (FOREST) Act | HOUSE OF REPRESENTATIVES,SENATE | 945424 | 0 | 0 | 2024-10-15T12:38:49-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);