lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "7ff6670e-90f3-4ab4-a3a2-e9df1d6d7f1f", filing_year = 2017 and issue_code = "RET" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002633 | AARP 7ff6670e-90f3-4ab4-a3a2-e9df1d6d7f1f | Q2 | AARP | 1694 | AARP | 2017 | second_quarter | RET | Discussed conceptual draft of bill regarding electronic disclosures regarding retirement plans. Discussed retirement issues relevant to tax reform. S. 218/H.R. 624, Social Security Fraud Prevention Act of 2017 - Discussed bill. H.Res.66, H.Res.67, S.Res.33, S.Res.34 - Lobbied to prevent revocation of the Department of Labor's guidance to state and municipal-facilitated retirement savings programs under the Congressional Review Act. Discussed support for the DOL Fiduciary rule. H.R. 2028 (Public Law 114-254) - Further Continuing and Security Assistance Appropriations Act, 2017 - Lobbied in opposition to hostile policy riders concerning DOL fiduciary duty rules. Met with the SSA and OMB regarding SSA FY 2017 and FY 2018 funding levels and reviewed comments and testimony regarding Representative Payee Program. Discussed conceptual draft of bill regarding electronic disclosures regarding retirement plans. H.R. 624, Social Security Fraud Prevention Act of 2017 - Endorsed bill. Supported bill that requires the Social Security Administration to remove Social Security Numbers from mailings when their use is unnecessary (H.R. 624, the Social Security Number Fraud Prevention Act and H.R.1513 - Social Security Must Avert Identity Loss (MAIL) Act of 2017). Met with House and Senate staff and White House staff to discuss possible retirement changes as part of tax legislation. Met with House and Senate staff to discuss Social Security. Met with House and Senate staff and the PBGC to discuss possible legislation regarding multiemployer pensions. Testified before the ERISA Advisory Council on ideas to simplify pension and health plan reporting requirements. S.1076, Keep Our Pension Promises Act - Endorsed bill. S.959, Protection of Social Security Benefits Restoration Act - Endorsed bill. Discussed bipartisan bill enabling graduate student to start IRAS and Retirement Clearinghouse Registry for frozen retirement accounts. AARP supported the latter bill last Congress. Discussed support for proposals to expand Roth coverag… | Centers For Medicare and Medicaid Services (CMS),Equal Employment Opportunity Commission (EEOC),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),Office of Management & Budget (OMB),Pension Benefit Guaranty Corporation (PBGC),SENATE,Social Security Administration (SSA),Transportation, Dept of (DOT),Veterans Affairs, Dept of (VA),White House Office | 2600000 | 0 | 0 | 2017-07-20T09:44:43.640000-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);