lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "d0021aa5-b2d2-4e9f-90ae-c4d4bdf4c676" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1566455 | INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA d0021aa5-b2d2-4e9f-90ae-c4d4bdf4c676 | Q2 | INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA | 19230 | INDEPENDENT PETROLEUM ASSOCIATION OF AMERICA | 2014 | second_quarter | NAT | H.R. 6: Domestic Prosperity and Global Freedom Act H. R. 1582: Energy Consumers Relief Act of 2013 H.R. 1613: Outer Continental Shelf Transboundary Hydrocarbon Agreements Authorization Act H.R. 1965: Federal Lands Jobs and Energy Security ActH.R. 1154: BREATHE Act H.R. 1921: Fracturing Responsibility and Awareness of Chemicals Act of 2013 H.R. 2081: No More Excuses Energy Act of 2013 H.R. 2231: Offshore Energy and Jobs Act H.R. 2259: North Fork Watershed Protection Act of 2013 H.R. 2265: More Energy More Jobs Act H.R. 2511: Federal Land Freedom Act of 2013 H.R. 2513: Fracturing Regulations are Effective in State Hands Act H.R.2542: Regulatory Flexibility Improvements Act of 2013 H.R. 2728: Protecting States' Rights to Promote American Energy Security Act H.R. 2825: CLEANER Act of 2013 H.R.2850 - EPA Hydraulic Fracturing Study Improvement Act H.R. 3080: The Water Resources Reform and Development Act H.R. 4304: Jumpstarting Opportunities with Bold Solutions Act H.AMDT.234: Amendment requires the Secretary of the Interior to include those areas requested by State Governors in any environmental review conducted or statement prepared for the leasing program under the National Environmental Policy Act H.AMDT.237: Amendment limits Bureau of Ocean Energy and Ocean Energy Safety Service activities related to the National Ocean Policy developed under Executive Order 13547. The amendment requires a report be submitted to Congress identifying expenditures for fiscal years 2011-2013 by the Bureau of Ocean Energy, Ocean Energy Safety Service, and their predecessor agencies H.AMDT.240: An amendment numbered 7 printed in Part B of House Report 113-131 to require the Bureau of Ocean Energy Management to permit seismic testing in the Atlantic Outer Continental Shelf of the United States by December 31, 2013 H.AMDT.241: Amendment sought to prohibit offshore oil and gas leases in Bristol Bay off the coast of Alaska S. 601: Water Resources Development Act of 2013 S.696: Safe Chemicals Act of 2013 S. 812: To authorize the … | Bureau of Land Management (BLM),Council on Environmental Quality (CEQ),Energy, Dept of,Environmental Protection Agency (EPA),Executive Office of the President (EOP),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE,Small Business Administration (SBA),U.S. Fish & Wildlife Service (USFWS),U.S. Forest Service | 427783 | 0 | 0 | 2014-07-21T10:32:06.577000-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);