lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "2b4e2314-e189-4f3e-9400-60d8f7dd45c4" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1696743 | PEPCO HOLDINGS, INC. 2b4e2314-e189-4f3e-9400-60d8f7dd45c4 | Q2 | PEPCO HOLDINGS, INC. | 79392 | PEPCO HOLDINGS INC | 2015 | second_quarter | ENG | H.R. 1558, Resolving Environmental and Grid Reliability Conflicts Act of 2015 (Olson); H.R. 1980, E-Access Act; S. 848, Resolving Environmental and Grid Reliability Conflicts Act of 2015 (McCaskill); S. 1044, E-Access Act; House Energy & Power Subcommittee, Discussion Draft Title II: 21st Century Workforce House Energy & Power Subcommittee, Discussion Draft Energy Efficiency House Energy & Power Subcommittee, Discussion Draft FERC Process Coordination House Energy & Power Subcommittee, Discussion Draft Energy Reliability and Security S. 454, A bill to amend the Department of Energy High-End Computing Revitalization Act of 2004 to improve the high-end computing research and development program of the Department of Energy, and for other purposes (Alexander); S. 485, A bill to prohibit the use of eminent domain in carrying out certain projects (Boozman); S. 523, A bill to coordinate the provision of energy retrofitting assistance to schools (Collins); S. 562, A bill to promote exploration for geothermal resources, and for other purposes (Heller); S. 600, A bill to require the Secretary of Energy to establish an energy efficiency retrofit pilot program (Klobuchar); S. 703, The Weatherization Enhancement and Local Energy Efficiency Investment and Accountability Act (Coons); S. 720, The Energy Savings and Industrial Competitiveness Act of 2015 (Portman); S. 723, The Utility Energy Service Contracts Improvement Act of 2015 (Schatz); S. 784, A bill to direct the Secretary of Energy to establish microlabs to improve regional engagement with national laboratories (Heinrich); S. 822, A bill to expand geothermal production, and for other purposes (Wyden); S. 858, The Energy Savings Through Public-Private Partnerships Act of 2015 (Gardner); S. 869, The All-of-the-Above Federal Building Energy Conservation Act of 2015 (Hoeven); S. 878, A bill to establish a State residential building energy efficiency upgrades loan pilot program (Sanders); S. 886, The Smart Energy and Water Efficiency Act of 2015 (Udall); S. 888, The PREPARE A… | HOUSE OF REPRESENTATIVES,SENATE | 300000 | 0 | 0 | 2015-07-15T14:20:08.473000-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);