lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "6afe8735-b7e6-407e-b56d-eefc76d4354f", filing_year = 2014 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1527480 | ALPINE GROUP PARTNERS, LLC. 6afe8735-b7e6-407e-b56d-eefc76d4354f | Q1 | ALPINE GROUP PARTNERS, LLC. | 1171 | BIOTECHNOLOGY INDUSTRY ORGANIZATION (BIO) | 2014 | first_quarter | ENG | S. 1807 A bill to amend the Clean Air Act to eliminate the corn ethanol mandate for renewable fuel, and for other purposes. S. 1563 A bill to provide for the expansion of the biofuels market S. 1230 Alternative Fuel Vehicles Competitiveness and Energy Security Act of 2013 S. 1195 Renewable Fuel Standard Repeal ActS. 344 A bill to prohibit the Administrator of the EPA from approving the introduction into commerce of gasoline that contains greater than 10-volume-percent ethanol, and for other purposes. S. 251 Phantom Fuel Reform Act H.R. 4051 To amend the Farm Security and Rural Investment Acot of 2002 to establish a competitive grant program for renewable fuel infrastructure, and for other purposes. H.R. 3758 To amend the Internal Revenue Code of 1986 to extend the second generation biofuel producer credit and the special allowance for second generation biofuel plant property. H.R. 2493 To amend chapter 329 of title 49, United States Code, to ensure that new vehicles enable fuel competition so as to reduce the strategic importance of oil to the U.S. H.R. 1959 Domestic Alternative Fuels Act of 2013 H.R. 1482 Renewable Fuel Standard Amendements Act H.R. 1469 Leave Ethanol Volumes at Existing Levels Act H.R. 1462 To amend the Claean Air Act to eliminate certain requirements under the renewable fuel program, to prohibit the Administrator of the EPA from approving the introduction into commerce of gasoline that contains greater than 10-volume-percent ehanol, and for other purposes. H.R. 1461 Renewable Fuel Standard Elimination Act H.R. 875 To provide for a comprehensive assessment of the scientific and technical research on the implications of the use of mid-level ethanol blends, and for other purposes. H. R. 550 Phantom Fuel Reform Act of 2013 H.R. 796 To require the Administrator of the EPA to use the commercially available volume of cellulosic biofuel in setting requirements for the renewable fuel program under the Clean Air Act, and for other purposes. H.R. 259 Energy Freedom and Economic Prosperity Act | HOUSE OF REPRESENTATIVES,SENATE | 30000 | 0 | 0 | 2014-04-18T13:56:29.383000-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);