lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "4037e0a9-ffd8-4e97-8066-e2bf5d08726b" and issue_code = "ENV" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 830524 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA 4037e0a9-ffd8-4e97-8066-e2bf5d08726b | Q3 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA | 14187 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA | 2009 | third_quarter | ENV | Agriculture/food-related provisions of: H.R.232, to create a federal greenhouse gas registry. H.R.864, to amend 20005 Energy Policy Act to provide renewable fuel pipeline loan guarantees. H.R.260, to authorize loan guarantees for cellulosic ethanol production technology. H.R.6533, to carry out conservation reserve program notice CRP-598. H.R.6636, to protect farmers against any harm from food from genetically engineered organisms. H.R.6637, to give protection to farmers and ranchers that may be harmed by genetically engineered organisms. H.R.6670, to take certain actions to increase access to various fuels and lower energy prices. H.R.6709, to enhance U.S. path toward energy independence. H.R.6899, to reduce U.S. dependency on oil via clean and renewable, alternative fuels. S.3485, to increase number of automobiles capable of using higher-level blends of renewable fuels. H.R.2129, to protect consumers from price-gouging of gasoline and other fuels. H.R.2263, to amend the Clean Air Act to waive lifecycle greenhouse gas emission reduction requirements. H.R.2454, to create clean energy jobs, achieve energy independence, and other purposes. H.R.2846, to increase energy independence and job creation, and other purposes. H.R.2880, to establish a carbon incentive program for greenhouse gas emissions reductions on farm land. H.R.2895, to amend 1978 Public Utility Regulatory Policies Act, to promote energy independence and other. H.R.2998, to create clean energy jobs, achieve energy independence, and other purposes. S.787, to amend Federal Water Pollution Control Act to clarify U.S. jurisdiction over U.S. water. S.828, to amend 2005 Energy Policy Act to provide loan guarantees for renewable fuel pipeline projects. S.943, to amend Clean Air Act to allow waiver of lifecycle greenhouse gas emission reduction requirements. S.949, to amend 2005 Energy Policy Act to improve energy loan guarantee program. S.1095, to amend Clean Air Act to convert renewable fuel standard into low-carbon fuel standard. S.1148, to amend Clean Air… | Agriculture, Dept of (USDA),Bureau of Citizenship & Immigration Services (BCIS),Bureau of Indian Affairs (BIA),Commodity Futures Trading Commission (CFTC),Council of Economic Advisers (CEA),Education, Dept of,Energy, Dept of,Environmental Protection Agency (EPA),Executive Office of the President (EOP),Farm Credit Administration,Federal Emergency Management Agency (FEMA),Federal Reserve System,Federal Trade Commission (FTC),Food & Drug Administration (FDA),Government Accountability Office (GAO),Health & Human Services, Dept of (HHS),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Interior, Dept of (DOI),Internal Revenue Service (IRS),Justice, Dept of (DOJ),Labor, Dept of (DOL),Maritime Administration (MARAD),Natl Aeronautics & Space Administration (NASA),Occupational Safety & Health Administration (OSHA),Office of Management & Budget (OMB),SENATE,Small Business Administration (SBA),State, Dept of (DOS),Surface Transportation Board (STB),Transportation, Dept of (DOT),Treasury, Dept of,U.S. Customs & Border Protection,U.S. Immigration & Customs Enforcement (ICE),U.S. International Trade Commission (ITC),U.S. Trade Representative (USTR) | 280000 | 0 | 0 | 2009-10-16T09:23:12-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);