lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "47edaaa7-b47e-4c19-bc77-2204d35358e4" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 598541 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA 47edaaa7-b47e-4c19-bc77-2204d35358e4 | Q1 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA | 14187 | FARMERS EDUCATIONAL COOPERATIVE UNION OF AMERICA | 2008 | first_quarter | ENV | Agriculture/food-related provisions of: H.CON.RES.153, expresses need for a nationwide diversified energy portfolio. H.RES.651 to commend Brazil on its oil-dependence reduction efforts. H.R.6, to move the U.S. to greater energy independence through renewable fuel production. H.R.143, to provide for the security of critical energy infrastructure. H.R.349, to amend the Clean Air Act to require that gasoline contain 10 percent renewable fuel. H.R.370, to promote coal-to-liquid fuel activities. H.R.395, to amend the Clean Air Act for grants for cellulosic ethanol projects. H.R.559, to promote renewable fuel. H.R.570, to expand through grants infrastructure necessary to increase alternative fuel availability. H.R.620, to set up a market-driven system of greenhouse gas tradeable allowance. H.R.635, to amend the Clean Air Act to increase amount of renewable fuel in gasoline. H.R.670, to increase use of alternative fuels and new vehicle technologies. H.R.720, to amend the Federal Water Pollution Control Act. H.R.729, to amend the 1978 Public Utility Regulatory Policies Act. H.R.791, to increase renewable fuel content of gasoline in U.S. H.R.969, to amend title VI of the Public Utility Regulatory Policies Act of 1978. H.R.1133, to provide for the energy independence of the U.S. H.R.1252, to protect consumers from fuel price-gouging. H.R.1300, to improve vehicle technology and distribution of alternative fuels. H.R.1451, to provide incentives to reduce dependence on foreign oil. H.R.1945, to improve the energy efficiency of the U.S. H.R.2010, to set up a regulatory system for offshore aquaculture in the U.S. H.R.2037, to amend the 1992 Energy Policy and Conservation Act to meet U.S. goals for renewable fuels. H.R.2154, to improve U.S. energy security through better renewable energy systems. H.R.2178, to amend the Clean Air Act to increase amount of biofuel in diesel fuel. H.R.2218, to provide for a Biofuels Feedstocks Energy Reserve. H.R.2237, to promote energy policy reforms and alternative energy. H.R.2261, to encourag… | 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) | 210369 | 0 | 0 | 2008-04-18T11:33: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);