lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "6ddb1192-e52a-4e96-8ef1-c4073ba862ba" and issue_code = "CAW" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1572015 | SIERRA CLUB 6ddb1192-e52a-4e96-8ef1-c4073ba862ba | Q2 | SIERRA CLUB | 35274 | SIERRA CLUB | 2014 | second_quarter | CAW | HOUSE H.R. 2259-North Fork Watershed Protection Act of 2014-(All Sections) H.R. 4808-Protecting Jobs, Families, and the Economy From EPA Overreach Act-(Oppose) H.R. 4813-Protection and Accountability Regulatory Act of 2014-(Oppose)HOUSE (Continued) H.R. 0524-To amend the Federal Water Pollution Control Act to clarify that the Administrator of the Environmental Protection Agency does not have the authority to disapprove a permit after it has been issued by the Secretary of the Army under section 404 of such Act.-(Oppose) H.R. 4850-Coal Jobs and Affordable Energy Protection Act of 2014-(Oppose) H.R. 4923-Energy and Water Development and Related Agencies Appropriations Act, 2015-(Oppose and monitored for riders) SENATE S. 0601-Water Resources Development Act-(seeking to strike some provisions) S. 1009-Chemical Safety Improvement Act-(Oppose as written, support strengthening amendments) S. 1961-Chemical Safety and Drinking Water Protection Act-(Neutral) S. 2414-Protecting Jobs, Families, and the Economy From EPA Overreach Act-(Oppose) S.J. Res. 30-A joint resolution to disapprove a rule of the Environmental Protection Agency relating to greenhouse gas emissions from electric utility generating units.-(All Sections) NOT YET INTRODUCED (NYI) Carbon Rule CRA-(Oppose) Coal Residuals Reuse and Management Act-(Oppose) | Agriculture, Dept of (USDA),Bureau of Land Management (BLM),Council on Environmental Quality (CEQ),Energy, Dept of,Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),Office of Management & Budget (OMB),SENATE,Transportation, Dept of (DOT),U.S. Forest Service | 110000 | 0 | 0 | 2014-07-21T15:48:00.257000-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);