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 = "ffca78c3-2dab-4bb1-ae3c-c7dfdeaebc45" and issue_code = "LAW" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • LAW · 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
2029673 NATIONAL RIFLE ASSOCIATION OF AMERICA ffca78c3-2dab-4bb1-ae3c-c7dfdeaebc45 Q3 NATIONAL RIFLE ASSOCIATION OF AMERICA 28470 NATIONAL RIFLE ASSOCIATION OF AMERICA 2017 third_quarter LAW H.R.34 - Safe Students Act - This bill amends the federal criminal code to repeal provisions that prohibit the possession or discharge of a firearm in a school zone. H.R.38 - Concealed Carry Reciprocity Act of 2017 - This bill amends the federal criminal code to allow a qualified individual to carry a concealed handgun into or possess a concealed handgun in another state that allows individuals to carry concealed firearms. H.R.57 - Accidental Firearms Transfers Reporting Act of 2017 - This bill requires the Federal Bureau of Investigation (FBI) to submit a biannual report to Congress on the number of proposed firearm transfers where: (1) a licensed gun dealer submitted a background check through the National Instant Criminal History Background Check System (NICS), (2) NICS failed to respond to the licensed gun dealer within three business days, and (3) the licensed gun dealer completed the transfer. H.R.62 - Gun Violence Reduction Resources Act of 2017 - This bill authorizes the Department of Justice to hire 200 additional agents and investigators for the Bureau of Alcohol, Tobacco, Firearms and Explosives. H.R.84 - Knife Owners' Protection Act of 2017 - To protect the right of law-abiding citizens to transport knives interstate, notwithstanding a patchwork of local and State prohibitions, and to repeal Federal provisions related to switchblade knives which burden citizens. H.R.163 - Gun Manufacturers Accountability Act - This bill amends the Protection of Lawful Commerce in Arms Act to repeal provisions that prohibit state or federal civil actions or administrative proceedings from being brought against firearm or ammunition manufacturers, sellers, importers, dealers, or trade associations for criminal or unlawful misuse of a firearm by the person bringing the action or a third party. H.R.358 - To amend chapter 44 of title 18, United States Code, to more comprehensively address the interstate transportation of firearms or ammunition. H.R.367 - Hearing Protection Act of 2017 - This bill amends the Internal… Agriculture, Dept of (USDA),Bureau of Alcohol Tobacco Firearms & Explosives,Bureau of Land Management (BLM),HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),Justice, Dept of (DOJ),Natl Park Service (NPS),SENATE,U.S. Fish & Wildlife Service (USFWS),U.S. Forest Service   850000 0 0 2017-10-18T12:40:41.280000-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 57.763ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API