lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "cfeeefd3-3031-443c-8d0a-e70f3d3553e1" and issue_code = "AGR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2723786 | GREEN PLAINS INC. cfeeefd3-3031-443c-8d0a-e70f3d3553e1 | Q4 | GREEN PLAINS INC. | 401104765 | GREEN PLAINS | 2021 | fourth_quarter | AGR | Issues related to the RFS; Issues related to ethanol exports; Issues related to distiller grain exports; Issues related to 2020 Renewable Volume Obligation (RVO) under the RFS; Issues related to 2021 Renewable Volume Obligation (RVO) under the RFS; Issues related to 2022 Renewable Volume Obligation (RVO) under the RFS; Issues related to unwarranted small refinery exemptions from RFS compliance; Issues related to Reid Vapor Pressure (RVP) waiver extension from E10 to E15 blends; Issues related to the Novel Coronavirus and the disease COVID-19 including economic impact on ethanol supply and demand; Issues related to the USDA Higher Blends Infrastructure Incentive Program; Issues related to the 10th circuit small refinery exemption decision and SCOTUS review; Issues related to the Renewable Fuel Reimbursement Program; Issues related to USDA CCC funds being utilized to assist biofuels producers; Issues related to life cycle assessment modeling for crops used to make biofuels including ethanol, biodiesel, renewable diesel and sustainable aviation fuel; Issues related to proposed clean fuel production tax credits | Agriculture, Dept of (USDA),Energy, Dept of,Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE,Transportation, Dept of (DOT),Treasury, Dept of,U.S. Trade Representative (USTR),White House Office | 70000 | 0 | 0 | 2022-01-12T09:47:42.810000-05: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);