lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_period = "third_quarter", filing_uuid = "fa8ce2be-8300-4b40-b91c-e6d08452a4e5" and issue_code = "ENG" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3238116 | 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 | ENG | Issues related to electric sector security including reliability, public/private and cross-sector partnerships, information sharing and protections, incident reporting, research and development, cyber resources, liability issues, defense critical electric infrastructure, threat environment, supply chain, and security postures. Issues related to the grid modernization. Issues related to the Power Marketing authorities and the Tennessee Valley Authority. Issues related to electric vehicles and EV infrastructure including grid infrastructure to support increased electrification. Issues related to mitigation and resilience of the grid due to weather and disasters. Issues related to energy efficiency standards to appliances (water heaters, heat pumps, etc.). Issues related to implementation of H.R. 1319 (Infrastructure Investment and Jobs Act). Issues related to carbon capture, utilization, and storage deployment, including demonstration projects. Draft legislation related to transmission permitting, siting and cost allocation. Issues related to Senator Hickenlooper's BIG WIRES bill. Issues related to the Southwest Power Fund Establishment Act. Draft legislation known as the Building American Energy Security Act of 2022. H.R. 1, The Lower Energy Costs Act. To reform the energy permitting process. H.R. 1058. Promoting Cross-border Energy Infrastructure Act. This legislation would establish a more uniform, transparent, and modern process to authorize the construction, connection, operation, and maintenance of international border-crossing facilities for the import and export of oil and natural gas and the transmission of electricity. H.R. 1130. Unlocking Our Domestic LNG Potential Act. This legislation would amend the NGA to repeal all restrictions on the import and export of natural gas. H.R. 1115, Promoting Interagency Coordination for Review of Natural Gas Pipelines Act. This legislation would improve coordination among Federal and State agencies reviewing applications for the construction of interstate natural gas p… | 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);