home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

1 row where filing_uuid = "4c508de4-eec1-49f0-bd6d-2c8e91c742d5" and issue_code = "GOV" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • GOV · 1 ✖

filing_year 1

  • 2017 1

filing_period 1

  • third_quarter 1
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
2031141 NATIONAL ACTIVE AND RETIRED FEDERAL EMPLOYEES ASSOCIATION 4c508de4-eec1-49f0-bd6d-2c8e91c742d5 Q3 NATIONAL ACTIVE AND RETIRED FEDERAL EMPLOYEES ASSOCIATION 27081 NATIONAL ACTIVE AND RETIRED FEDERAL EMPLOYEES ASSOCIATION 2017 third_quarter GOV Support H.R. 757/S.255, the Federal Adjustment of Income Rates (FAIR) Act, which would provide a 2.0 percent pay raise for federal employees and a 1.2 percent increase in locality pay in 2018. Oppose H.R. 396, the "Tax Accountability" Act of 2017, which would mandate that no individual with an unpaid tax liability can be eligible for federal employment, and which would require agencies to review employee's tax liability. Support H.R. 20, The Government By the People Act of 2017, which would reform campaign finance laws to put small donors on par with wealthier donors. Would provide a tax credit for contributions and government matching contributions. Support H.R. 1594, the Wage Grade Parity Act, which would provide wage grade employees the same raise as General Schedule employees. Support H.R. 873 / S. 873, the TSP Modernization Act, which would allow for expanded and more flexible withdrawal options from Thrift Savings Plan accounts. Support H.R. 1022, the Federal Employees Paid Parental Leave Act of 2017, which would provide federal employees with 6 weeks of paid parental leave in connection with the birth or adoption of a child. Support H.R. 3269, the Federal Employee Pension Fairness Act of 2017, which would repeal recent increases in retirement contributions for new hires into the Federal Employees Retirement System (FERS). HOUSE OF REPRESENTATIVES,Office of Personnel Management (OPM),SENATE,U.S. Postal Service (USPS)   90000 0 0 2017-10-18T17:02:39.920000-04:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 62.624ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API