lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "fd1f1abb-eefc-41ca-a3b2-260faaa462a8" and issue_code = "NAT" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1769641 | WEYERHAEUSER COMPANY fd1f1abb-eefc-41ca-a3b2-260faaa462a8 | Q4 | WEYERHAEUSER COMPANY | 41124 | WEYERHAEUSER COMPANY | 2015 | fourth_quarter | NAT | HR 1052: Molalla River Wild and Scenic Act (entire bill) HR 2822: FY 2016 Interior, Environment and Related Agencies Appropriations Act (Title I, Ssection 122, Northern Long Eared Bat) S. 132: Oregon & California Land Grant Act of 2015 (adjacent landowner issues: Tit. I, Sec. 2,3 & 8 & 9; Molalla: Tit. III, Sec. 321) S. 1699: Oregon Wildlands Act (section 204, Molalla River) Issues: Endangered Species Act, including USF&WS proposed listing of the long-eared bat, green building/building with wood, forest certification. | Agriculture, Dept of (USDA),Energy, Dept of,Environmental Protection Agency (EPA),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),SENATE | 210000 | 0 | 0 | 2016-01-15T16:38:25.770000-05: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);