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 = "1c08526a-4f56-45e4-bbf4-e1be8f0b7f4f" and issue_code = "HCR" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • HCR · 1 ✖

filing_year 1

  • 2017 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
2081867 JOHNSON & JOHNSON SERVICES, INC. 1c08526a-4f56-45e4-bbf4-e1be8f0b7f4f Q4 JOHNSON & JOHNSON SERVICES, INC. 20686 JOHNSON & JOHNSON SERVICES INC 2017 fourth_quarter HCR - S. 469/H.R. 1245, "Affordable and Safe Prescription Drug Importation Act", regarding all provisions. - S. 771/H.R. 1776, "Improving Access To Affordable Prescription Drugs Act", regarding all provisions. - H.R. 575, "Cosmetic Modernization Amendments of 2017", regarding all provisions. - H.R. 1271, "DXM Abuse Prevention Act of 2017", regarding all provisions. - S. 404/H.R. 1736, "To amend the Federal Food, Drug, and Cosmetic Act to improve the process for inspections of device establishments and for granting export certifications.", regarding all provisions. - Issues regarding drug pricing. - Issues related to diagnostic reform. - Issues related to blood glucose meters. - S 260/SJ Res 17/HR 849, Protecting Seniors' Access to Medicare Act of 2017, regarding all provisions - S 251/SJ Res 16, Protecting Medicare from Executive Action Act of 2017, regarding all provisions - S 204/HR 878, Right to Try Act of 2017, regarding all provisions - HR 2026, Pharmaceutical Information Exchange Act, regarding all provisions - HR 1703, Medical Product Communications Act of 2017, regarding all provisions - Issues related to VA procurement of medical devices - HR 2474, Medical Product Review Harmonization Act, regarding all provisions - HR 2144, Risk Based Classification of Accessories Act - Issues related to AMA resolution 208(A-16) regarding attorney ads on drug side effects - S.1113, "Personal Care Products Safety Act", regarding all provisions - HR 2790, "Humane Cosmetics Act", regarding all provisions - Issues related to over the counter medicine regulatory reform - HR 3271, "Protecting Access to Diabetes Supplies Act", regarding all provisions - Issues regarding medical device repeal - Issues regarding NIH Funding - HR 2164, "Medical Device Safety Act", regarding all provisions - Issues related to 340B - Issues related to HIV vaccines HOUSE OF REPRESENTATIVES,SENATE,Veterans Affairs, Dept of (VA),White House Office   3650000 0 0 2018-01-22T10:57:45.587000-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 58.815ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API