lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "a4e5eb87-a9f7-4e23-b449-b83bf9d1b141" and issue_code = "FUE" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2815863 | NATIONAL ENERGY & FUELS INSTITUTE a4e5eb87-a9f7-4e23-b449-b83bf9d1b141 | Q2 | NATIONAL ENERGY & FUELS INSTITUTE | 400278337 | NATIONAL ENERGY & FUELS INSTITUTE | 2022 | second_quarter | FUE | Generally supported federal programs and policies that encourage production, blending, and use of renewable fuels in the residential and commercial heating sector, including the Renewable Fuels Standard (RFS). Urged the USDA to increase the 2022 RFS renewable volume obligation for advanced biofuels and expand pathways for biomass to allow greater feedstock availability in the RFS. Advocated general support for increased oil and refined petroleum production in response to Russia's invasion of Ukraine, including use of the Defense Production Act in support of both conventional, renewable, and alternative fuel production. Supported the Renewable Fuel Infrastructure Investment and Market Expansion Act (S.227 and H.R.1542) and version of this bill included in the Build Back Better Act (Section 12006 of H.R.5376) and the Lower Food & Fuel Costs Act (Section 401 of H.R.7606). Requested a waiver from reid vapor pressure (RVP) requirements pursuant to 42 U.S.C. 7545(c)(4)(C)(ii) in response to market disruptions caused by Russia's invasion of Ukraine. Opposed the Consumer Fuel Price Gouging Prevention Act (H.R.7688). Expressed concern regarding a report the administration planned to use authority under 42 USC 6250b to release product from the Northeast Home Heating Oil Reserve. | Agriculture, Dept of (USDA),Energy, Dept of,Environmental Protection Agency (EPA),Executive Office of the President (EOP),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE | 80000 | 0 | 0 | 2022-07-08T18:42:05-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);