lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "2bcdef93-e6a7-464f-abeb-b34b019ea399", filing_year = 2012 and issue_code = "ANI" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1238099 | EARTHJUSTICE 2bcdef93-e6a7-464f-abeb-b34b019ea399 | Q1 | EARTHJUSTICE | 12972 | EARTHJUSTICE | 2012 | first_quarter | ANI | Legislation H.R. 1837 S. 1720 Jobs Through Growth Act H.R. 1719 Endangered Species Compliance and Transparency Act, 2011 H.R. 1837 San Joaquin Valley Water Reliability Act, 2011 H.R. 2111 Salmon Solutions and Planning Act, 2011 H.R. 1251 More Water for Our Valley Act, 2011 H.R. 1251 More Water for Our Valley Act, 2011 H.R. 510 Idaho and Montana Wolf Management Act of 2011 H.R. 509 To amend the Endangered Species Act of 1973 to provide that Act shall not apply to the gray wolf (canis lupus) S. 249 To amend the Endangered Species Act of 1973 to provide that Act shall not apply to any gray wolf (Canis lupus) S. 321 Delisting Gray Wolves to Restore State Management Act of 2011 H.R. 838 Western Great Lakes Wolf Management Act of 2011 Rulemakings DOI: Fish an Wildlife Service Endangered and Threatened Wildlife and Plants; Proposed Rule for Removal of the Gray Wolf in Wyoming From the Federal List of Endangered and Threatened Wildlife and Removal of the Wyoming Wolf Populations Status as an Experimental Population; 76 FR 61782 (October 5, 2011) DOI; Fish and Wildlife Service Endangered and Threatened Wildlife and Plants; Final Rule To Identify the Northern Rocky Mountain Population of Gray Wolf as a Distinct Population Segment and To Revise the List of Endangered and Threatened Wildlife; 74 FR 15123 (April 2, 2009) Other Department of the Interior and Department of Commerce: Draft Policy on Interpretation of the Phrase, Significant Portion of Its Range in the Endangered Species Acts Definitions of Endangered and Threatened 76 FR 76987 (Dec. 9, 2011). Department of the Interior: Preliminary Plan for Retrospective Regulatory Review (May 26, 2011), which implements President Obamas Executive Order 13563 of January 18, 2011, Improving Regulation and Regulatory Review. Formal Endangered Species Act Consultation on the Proposed Coordinated Operations of the Central Valley Project (CVP) and State Water Project (SWP) (Dec. 15, 2008) | Agriculture, Dept of (USDA),Army, Dept of (Corps of Engineers),Bureau of Land Management (BLM),Commerce, Dept of (DOC),Council on Environmental Quality (CEQ),Energy, Dept of,Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),Minerals Management Service,Natl Oceanic & Atmospheric Administration (NOAA),SENATE,U.S. Fish & Wildlife Service (USFWS),U.S. Forest Service | 131397 | 0 | 0 | 2012-04-19T14:52:40.010000-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);