lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f9ffbc32-47ca-4c41-a615-cec4e4eab3d2" and issue_code = "FIN" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 986489 | PROCESS HANDLER ET AL. FOR HIRE, INC. f9ffbc32-47ca-4c41-a615-cec4e4eab3d2 | Q3 | PROCESS HANDLER ET AL. FOR HIRE, INC. | 81830 | MS. PATRICIA WOOD | 2010 | third_quarter | FIN | My firm's (i.e., Process Handler et al. For Hire, Inc.) termination (as of Tuesday, Aug. 17, 2010, at 8:06 AM EST) of each, any and all representation of, for et al. Sharp Realty LLC, Mrs. Linda Sharp, Mr. Cie Sharp and M. Sharp Construction, Inc., and their impact upon said firm's implicit, explicit et al. activities et al. DO NOT REPLY TO THIS MESSAGE. Your e-mail has been received. You will receive a response as soon as possible; however, some responses can take up to 15 business days. Question Reference #100622-000045 --------------------------------------------------------------- Subject: MTA needs REAL funding. Product Level 1: MTA-Wide Product Level 2: MTA-Wide General Category Level 1: Information Request Date Created: 06/22/2010 08:50 AM Last Updated: 06/22/2010 08:50 AM Status: Received Date/Time of Event: Location of Event --------------------------------------------------------------- Discussion Thread --------------------------------------------------------------- Customer (MTA Customer) - 06/22/2010 08:50 AM From: Estate of Delois Brassell/Delois Albert Brassell Attention: Estate Administrator Robert J. Brassell, Jr. Post Office Box 327 James A. Farley Post Office Building New York, New York 10116-0327 Main telephone number: 1-(646)-895-3914 Main electronic mail/e-mail address: hodpd065@aol.com Re: Follow-up to Follow-up to "MTA needs REAL funding" (direct quotation, (page break) via MTA website Question Reference #100610-000196, dated June 10, 2010 at 3:24 PM EST), Follow-up to "MTA MTA needing REAL funding Incident" via 100610-000196, and Question Reference #100615-000193. Also: REAL MTA funding, and others wanting and needing the same if the MTA does not want it. To whomever it may concern: Speaking and acting within ALL, ALL, ALL my professional et al., inclusive, capacities, inclusive, including as the Administrator of the decedent Estate of Delois Brassell/Delois Albert Brassell (as appoin… | Central Intelligence Agency (CIA),Defense, Dept of (DOD),Executive Office of the President (EOP),Federal Bureau of Investigation (FBI),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Natl Security Council (NSC),Office of the Secretary of Defense,Office of the Vice President of the United States,President of the U.S.,Securities & Exchange Commission (SEC),SENATE,State, Dept of (DOS),Vice President of the U.S.,White House Office | 0 | 0 | 2010-08-28T11:20:21.150000-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);