lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "871b2be5-e90a-4155-9560-d3e8bf71ff1d" and issue_code = "NAT" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1850918 | NATIONAL RIFLE ASSOCIATION OF AMERICA 871b2be5-e90a-4155-9560-d3e8bf71ff1d | Q2 | NATIONAL RIFLE ASSOCIATION OF AMERICA | 28470 | NATIONAL RIFLE ASSOCIATION OF AMERICA | 2016 | second_quarter | NAT | H.R. 167; Wildfire Disaster Funding Act - Amends the Balanced Budget and Emergency Deficit Control Act of 1985 to require specified adjustments to discretionary spending limits in FY2015-FY2022 to accommodate appropriations for wildfire suppression operations in the Wildland Fire Management accounts at the Department of Agriculture (USDA) or the Department of the Interior. H.R. 327; Polar Bear Conservation and Fairness Act of 2015 - To amend the Marine Mammal Protection Act of 1972 to allow importation of polar bear trophies taken in sport hunts in Canada before the date the polar bear was determined to be a threatened species under the Endangered Species Act of 1973. H.R. 461; Wild Game Donation Act of 2015 - Amends the Internal Revenue Code to: (1) increase the tax deduction for charitable contributions of qualified wild game meat by the processing fees paid with respect to such contributions, and (2) exclude from the gross income of meat processors processing fees paid by a charitable organization for the processing of donated wild game meat. H.R. 528; Recreational Fishing and Hunting Heritage and Opportunities Act - To direct Federal public land management officials to exercise their authority under existing law to facilitate use of and access to Federal public lands for fishing, sport hunting, and recreational shooting, and for other purposes. H.R. 697 & S. 1769; African Elephant Conservation and Legal Ivory Possession Act of 2015 - To amend the African Elephant Conservation Act of 1988 to conserve elephants while appropriately regulating ivory in the United States. H.R. 1735; National Defense Authorization Act for Fiscal Year 2016 - To authorize appropriations for fiscal year 2016 for military activities of the Department of Defense and for military construction, to prescribe military personnel strengths for such fiscal year, and for other purposes. H.R. 2028; Energy and Water Development and Related Agencies Appropriations Act, 2016 - Making appropriations for energy and water development and related… | Bureau of Alcohol Tobacco Firearms & Explosives,Bureau of Land Management (BLM),HOUSE OF REPRESENTATIVES,SENATE,U.S. Fish & Wildlife Service (USFWS),U.S. Forest Service | 810000 | 0 | 0 | 2016-07-19T13:26:03.707000-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);