lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "bb3f230d-e384-4ec3-b66a-c66a5bfa5222" and issue_code = "LAW" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 776990 | NATIONAL FRATERNAL ORDER OF POLICE bb3f230d-e384-4ec3-b66a-c66a5bfa5222 | Q1 | NATIONAL FRATERNAL ORDER OF POLICE | 27866 | NATIONAL FRATERNAL ORDER OF POLICE | 2009 | first_quarter | LAW | H.R. 18, the Powder-Crack Cocaine Penalty Equalization Act, would eliminate the disparity in sentencing between crack and powder cocaine offenses by changing the applicable amounts for powder cocaine to those currently applicable to crack cocaine; H.R. 73, the Traffic Stops Along the Border Statistics Study Act, would require the U.S. Attorney General to collect race and other data on traffic stops made by State and local law enforcement officers; H.R. 248, the Law Enforcement Officers Flag Memorial Act, would provide the families of deceased law enforcement officers with a flag that has been flown over the U.S. Capitol; H.R. 675, legislation which would grant statutory arrest authority to law enforcement officers employed by the U.S. Department of Defense; H.R. 1006/S. 418, the Secondary Metal Theft Prevention Act, would require secondary metal recycling agents to keep records of their transactions in order to deter individuals and enterprises engaged in the theft and interstate sale of stolen secondary metal; S. 132, the Gang Abatement and Prevention Act, is a comprehensive, national approach to the problem of gang violence which would establish a High Intensity Interstate Gang Activity Area (HIIGAA) program to facilitate greater cooperation between local, State and Federal law enforcement in identifying, targeting, and eliminating violent gangs in areas where gang activity is particularly prevalent and define new offenses which will enable law enforcement to fight gangs and gang-related activity more effectively; S. 256, the Combat Methamphetamine Enhancement Act, will strengthen Federal law by improving the self-certification process for retail sales of ephedrine and pseudoephedrine; S. 258, the Saving Kids from Dangerous Drugs Act, would increase penalties on those who tailor-market illegal drugs to entice children to purchase them; S. 386, the Fraud Enforcement and Recovery Act, which would strengthen the ability of law enforcement to investigate and prosecute fraudulent activity in connection wit… | Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Veterans Affairs, Dept of (VA),White House Office | 55000 | 0 | 0 | 2009-04-21T13:18:21-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);