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 = "9f51d757-2b95-4e39-856f-e144fdc2b5e3" and issue_code = "TAX" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TAX · 1 ✖

filing_year 1

  • 2008 1

filing_period 1

  • second_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
637489 THE NORTHWESTERN MUTUAL LIFE INSURANCE COMPANY 9f51d757-2b95-4e39-856f-e144fdc2b5e3 Q2 THE NORTHWESTERN MUTUAL LIFE INSURANCE COMPANY 29607 THE NORTHWESTERN MUTUAL LIFE INSURANCE COMPANY 2008 second_quarter TAX See attachment. TAX Second Quarter Report 2008 H.R. 25 - Fair Tax Act of 2007 H.R.150 - Life Insurance Employee Notification Act H.R. 377 - Insuring Families for Their Future Act of 2007 H.R. 411 - To amend the Internal Revenue Code of 1986 to make permanent certain temporary provisions applicable to individuals, including the sales tax deduction, the child credit, the repeal of the estate tax, and the deduction for higher education expenses. H.R.1810 - To amend the Internal Revenue Code of 1986 to permit the consolidation of life insurance companies with other companies. H.R. 3170 - To make permanent the individual income tax rates for capital gains, and for other purposes. H.R. 3970 - Tax Reduction and Reform Act of 2007 H.R. 4159 - Simplified USA Tax Act of 2007 H.R. 3361 - Pension Protection Technical Corrections Act of 2007 H.CON.RES.312 Revising the congressional budget for the United States Government for fiscal year 2008, establishing the congressional budget for the United States Government for fiscal year 2009, and setting forth appropriate budgetary levels for fiscal years 2010 through 2013. S.14 - A bill to repeal the sunset on certain tax rates and other incentives and to repeal the individual alternative minimum tax, and for other purposes. S.1025 Fair Tax Act of 2007 S.1111 Fair Flat Tax Act of 2007 S.1366 -A bill to amend the Internal Revenue Code of 1986 to permit the consolidation of life insurance companies with other S.1974 - Pension Protection Technical Corrections Act of 2007 S.CON.RES.70 An original concurrent resolution setting forth the congressional budget for the United States Government for fiscal year 2009 and including the appropriate budgetary levels for fiscal years 2008 and 2010 through 2013. Treasury Notice 2008-18 - Principle Based Reserves Treasury Notice 2007-15 - Simplification of correction programs for violation of sections 7702, 7702A and 817(h). Treasury Notice 2008-24 - Taxation of partial exchanges. Dept of Treasury - Internal Revenue … HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),Securities & Exchange Commission (SEC),SENATE,Treasury, Dept of   910000 0 0 2008-07-18T11:03:05-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 998.236ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API