lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "a971d141-eae8-4d8e-bb1d-5ae8c17ece78" and issue_code = "GOV" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1261316 | SIFF & ASSOCIATES PLLC a971d141-eae8-4d8e-bb1d-5ae8c17ece78 | Q2 | SIFF & ASSOCIATES PLLC | 400665998 | FEDERAL LAW ENFORCEMENT OFFICERS ASSOCIATION | 2012 | second_quarter | GOV | S. 1789, the "21st Century Postal Service Act of 2011," Title III--Federal Employees' Compensation Act (FECA). SA 2034 to S. 1789, related to Title III and reform of FECA, entire amendment. H.R. 2309, the "Postal Reform Act of 2011," legislation to restore the financial solvency of the U.S. Postal Service and to ensure the efficient and affordable nationwide delivery of mail, Title III, Sec. 311, regarding the scope of reforms to FECA. H.R. 3029, the "Reducing the Size of the Federal Government Through Attrition Act of 2011," seeking to exempt critical law enforcement personnel from legislation to reduce the size of the federal workforce through attrition, entire bill. H.R. 3028, the "Federal Employee Leave Transfer Act," legislation to amend title 5, United States Code, to permit the transfer of sick leave in leave-transfer programs, entire bill. H.R. 3387, the "Federal Law Enforcement Pay Equality Act," legislation to amend the Federal Law Enforcement Pay Reform Act of 1990 to adjust the percentage differentials payable to law enforcement officers in certain high-cost areas, entire bill. General education regarding federal law enforcement officer pay and benefits and the impact on law enforcement employees of increasing the employee contribution to FERS/CSRS. Legislative proposals to ensure an equitable annuity for federal law enforcement officers during periods of a federal pay-freeze (no bill introduced). | HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2012-07-12T17:11:42.197000-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);