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 = "e65b3105-eecb-4d8a-932d-b80923014340" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • SMB 1

filing_year 1

  • 2011 1

filing_period 1

  • fourth_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
1194727 NFIB (NATIONAL FEDERATION OF INDEPENDENT BUSINESS) e65b3105-eecb-4d8a-932d-b80923014340 Q4 NFIB (NATIONAL FEDERATION OF INDEPENDENT BUSINESS) 27811 NFIB (NATIONAL FEDERATION OF INDEPENDENT BUSINESS) 2011 fourth_quarter SMB H.R. 527, the Regulatory Flexibility Improvements Act-support H.R. 605, the Patients' Freedom to Choose Act- support H.R. 674, the 3% Withholding Repeal and Job Creation Act-support H.R. 881, the Americans with Disabilities Act (ADA) Notification Act- support H.R. 1041, the Fairness in Medicare Bidding Act-support H.R. 1173, the Fiscal Responsibility and Retirement Security Act-support H.R. 3010, the Regulatory Accountability Act-support H.R. 3066, the Companionship Exemption Protection Act-support H.R. 3068, the Regulatory Sunset and Review Act - support H.R. 3094, the Workforce Democracy and Fairness Act-support H.R. 3210, the Retailers and Entertainers Lacey Implementation and Enforcement Fairness (RELIEF) Act-support H.R. 3356, the ADA Compliance for Customer Entry to Stores and Services (ACCESS) Act-support H.R. 3630, the Middle Class Tax Relief and Job Creation Act-support H.J.Res. 2, Proposing a balanced budget amendment to the Constitution of the United States-support S. 312, the Patients Freedom to Choose Act- support S. 1392, the EPA Regulatory Relief Act- support S. 1666, the Employer Free Speech Act-support S. 1739, the Economic Growth and Jobs Protection Act-support S. 1801, the Small Business Jobs Tax Extenders Act-support S. 1866, the AGREE Act-support S. 1880, the Jobs and Premium Protection Act-support S. 1965, the Startup Act-support S.J.Res. 10, Proposing a balanced budget amendment to the Constitution of the United States-support Comments: EPAHQRCRA20100742 Definition of Solid Waste Docket No. OSHA-2010-0019 Occupational Injury and Illness Recording and Reporting Requirements NAICS Update and Reporting Revisions IRS- Notice 2011-73; Request for Comments on Health Coverage Affordability Safe Harbor for Employers (Section 4980H) CMS-9989-P Patient Protection and Affordable Care Act; Establishment of Exchanges and Qualified Health Plans; Proposed Rule Issues: Tax Code Reform-more competitive for small businesses Payroll tax holiday NLRB Poster Rule Federal Regulatory Reform Senator Wyden … Centers For Medicare and Medicaid Services (CMS),Environmental Protection Agency (EPA),Executive Office of the President (EOP),Federal Motor Carrier Safety Administration,Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Internal Revenue Service (IRS),Labor, Dept of (DOL),Natl Labor Relations Board (NLRB),Occupational Safety & Health Administration (OSHA),SENATE   780000 0 0 2012-01-19T11:41:41-05: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 43.408ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API