lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "e7e88e8a-e4d3-4d7e-9681-8873a782e0f2", filing_year = 2014 and issue_code = "RRR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1581269 | THE LAW OFFICES OF JOHN R. BRIMSEK, PC e7e88e8a-e4d3-4d7e-9681-8873a782e0f2 | Q3 | THE LAW OFFICES OF JOHN R. BRIMSEK, PC | 26147 | DAKOTA MINNESOTA AND EASTERN RAILROAD D/B/A CANADIAN PACIFIC RAILWAY | 2014 | third_quarter | RRR | Support balanced economic regulation of the railroad industry. S 638 Railroad Antitrust Enforcement Act. Oppose provisions which would repeal the limited railroad antitrust exemptions and which would permit reopenning previously approved railroad transactions.S.1462, Railroad Safety and Positive Train Control Extension Act Support. HR 3040, Safe Freight Act. Provisions related to train crew size--Monitor HR 3825, Freight Infrastructure Reinvestment Act--Monitor Sale of DM&E line west of Tracy, Minnesota--Support S. 2365 and HR 4689 requiring approval by the Surface Transportation Board of long term storage of rail cars. Monitor. S. 2777, Surface Transportation Board Reauthorization Act of 2014. Oppose. HR 4738 Tank Car Safety Act. Monitor S. 2784 Rail Safety Improvement Act of 2014. Monitor HR 5638 to allow railroad employees to remain on duty as necessary to clear a blockage of vehicular traffic at grade crossings. Monitor HR 5449 Passenger Rail Reform and Investment Act of 2014. Monitor. | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2014-10-01T10:48:33.207000-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);