lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "604f41b7-fa3b-4e5c-a970-e3098a3f0e51" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1809464 | AMEREN SERVICES 604f41b7-fa3b-4e5c-a970-e3098a3f0e51 | Q1 | AMEREN SERVICES | 38962 | AMEREN SERVICES | 2016 | first_quarter | TAX | H.R. 4016, amending the Internal Revenue Code of 1986 to extend the limitation on the carryover of excess corporate charitable contributions | HOUSE OF REPRESENTATIVES,SENATE | 500000 | 0 | 0 | 2016-04-15T17:30:11.213000-04:00 | |
| 1809465 | AMEREN SERVICES 604f41b7-fa3b-4e5c-a970-e3098a3f0e51 | Q1 | AMEREN SERVICES | 38962 | AMEREN SERVICES | 2016 | first_quarter | ENV | H.R. 1734, Improving Coal Combustion Residuals Regulation Act of 2015, to provide for implementation of minimum federal CCR requirements through a state-based permit program S. 1803 Improving Coal Combustion Residuals Regulation Act of 2015, to provide for implementation of minimum federal CCR requirements through a state-based permit program. SO2 attainment/non-attainment designation | HOUSE OF REPRESENTATIVES,SENATE | 500000 | 0 | 0 | 2016-04-15T17:30:11.213000-04:00 | |
| 1809466 | AMEREN SERVICES 604f41b7-fa3b-4e5c-a970-e3098a3f0e51 | Q1 | AMEREN SERVICES | 38962 | AMEREN SERVICES | 2016 | first_quarter | ENG | S. 2012, the Energy Policy Modernization Act of 2015 Amendments in areas related to grid security, grid reliability, transmission, energy storage, energy supply, environment and renewables: Murkowski (2963), Cassidy (2976), Inhofe (2981), Reid (2993), Barrasso (3017), Barrasso (3030), Rounds (3036), 3038 (Hoeven), Coats (3039), Manchin (3044), Flake (3048), Flake (3051), Blunt (3058), Boozman (3059), Boozman (3060), Capito (3061), Capito (3062), Blunt (3074), Johnson (3076), Markey (3101), Franken (3110), Franken (3111), Franken (3113), Franken (3115), 3120 (King-Reid), Heinrich (3122), Heinrich (3123), Thune (3141) | HOUSE OF REPRESENTATIVES,SENATE | 500000 | 0 | 0 | 2016-04-15T17:30:11.213000-04:00 | |
| 1809467 | AMEREN SERVICES 604f41b7-fa3b-4e5c-a970-e3098a3f0e51 | Q1 | AMEREN SERVICES | 38962 | AMEREN SERVICES | 2016 | first_quarter | COM | Discussion draft of legislation to facilitate the deployment of communications infrastructure, provisions regarding regulation of pole attachments | HOUSE OF REPRESENTATIVES,SENATE | 500000 | 0 | 0 | 2016-04-15T17:30:11.213000-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);