lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_uuid = "4c8ac12e-aee1-48af-8e30-5b4f5b2dbddd" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1912273 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO 4c8ac12e-aee1-48af-8e30-5b4f5b2dbddd | Q4 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO | 7383 | BUILDING AND CONSTRUCTION TRADES DEPT AFL-CIO | 2016 | fourth_quarter | BUD | H.R. 2028 - Further Continuing and Security Assistance Appropriations Act of 2017 - provides continuing appropriations for most federal agencies through the earlier of April 28, 2017, or the enactment of the applicable appropriations legislation. Lobbied on the H-2B returning worker expansion language within the bill as well as the EB-5 Visa language of the bill. Also lobbied on Section 45Q, tax legislation. | HOUSE OF REPRESENTATIVES,SENATE | 280000 | 0 | 0 | 2017-01-13T10:07:58-05:00 | |
| 1912274 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO 4c8ac12e-aee1-48af-8e30-5b4f5b2dbddd | Q4 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO | 7383 | BUILDING AND CONSTRUCTION TRADES DEPT AFL-CIO | 2016 | fourth_quarter | ENV | S. 612 - Water Infrastructure Improvements for the Nation Act - To provide for improvements to the rivers and harbors of the United States, to provide for the conservation and development of water and related resources. Entire Bill. H.R. 5303 - Water Resources Development Act of 2016 - A bill to provide for the conservation and development of water and related resources, to authorize the Secretary of the Army to construct various projects for improvements to rivers and harbors of the United States. Entire Bill. | HOUSE OF REPRESENTATIVES,SENATE | 280000 | 0 | 0 | 2017-01-13T10:07:58-05:00 | |
| 1912275 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO 4c8ac12e-aee1-48af-8e30-5b4f5b2dbddd | Q4 | BUILDING AND CONSTRUCTION TRADES DEPT., AFL-CIO | 7383 | BUILDING AND CONSTRUCTION TRADES DEPT AFL-CIO | 2016 | fourth_quarter | LBR | Davis-Bacon Prevailing Wage - General education unrelated to a specific bill concerning the social benefits of Davis-Bacon, sub chapter IV of Chapter 31 or Title 40, United States Code, to provide prevailing wages to federally funded projects. No bill. H.R. 1671 - Government Neutrality Contracting Act - To preserve open competition and Federal Government neutrality towards the labor relations of Federal Government contractors on Federal and federally funded construction projects. Entire bill. | HOUSE OF REPRESENTATIVES,SENATE | 280000 | 0 | 0 | 2017-01-13T10:07:58-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);