lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "fcd010c8-e0af-46f4-af7c-9a2140cd37f0" and issue_code = "MIA" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 818548 | PROCESS HANDLER ET AL. FOR HIRE, INC. fcd010c8-e0af-46f4-af7c-9a2140cd37f0 | Q3 | PROCESS HANDLER ET AL. FOR HIRE, INC. | 81830 | ESTATE OF DELOIS ALBERT BRASSELL | 2009 | third_quarter | MIA | Several postage-paid postcards (dated July 11, 2009) addressed to various U.S. federal executive and military and various international et al. officials regarding many, various unfinished, outstanding investment et al. matters and concerns regarding many investment and other financial houses' ... "adversarial approaches" towards the Estate of Delois Albert Brassell via the Delois Albert Brassell Estate Administrator (i.e., Mr. Robert J. Brassell, Jr., N.P.). Several postage-paid postcards (dated July 11, 2009) addressed to all Members, inclusive, all Advisors, inclusive, all operatives, inclusive, all officers, inclusive, et al., inclusive, of the United States National Security Council (NSC), the Office of the United States Trade Representative (USTR), the World Trade Organization (WTO, via the Office of the United States Trade Representative (USTR)) and the United Nations Security Council et al., inclusive, and the current Head and Deputy Head of the Delegation of the European Commission of the European Union (EU) to the United States of America and the United Nations regarding many, various unfinished, outstanding investment et al. matters and concerns regarding Deutsche Bank AG, UBS AG, the Development Bank of Japan, Israel Discount Bank Ltd., Morgan Stanley, the Nippon Life Insurance Company, Investcorp Bank B.S.C., Oppenheimer Holdings, Inc., Rothschild North America Inc., Rockefeller and Co., Inc., Andor Capital Management, L.L.C., Lexington Partners Inc., the Boeing Capital Corporation and Merrill Lynch & Co., Inc./the Bank of America Corporation and same aforementioned investment and other financial houses' flunkies, allies, whores et al.'s ... "adversarial approaches" towards the Estate of Delois Albert Brassell via the Delois Albert Brassell Estate Administrator (i.e., Mr. Robert J. Brassell, Jr., N.P.). | Central Intelligence Agency (CIA),Defense, Dept of (DOD),Director of National Intelligence (ODNI),Executive Office of the President (EOP),Joint Chiefs of Staff,Natl Security Council (NSC),President of the U.S.,State, Dept of (DOS),U.S. Trade Representative (USTR),Vice President of the U.S.,White House Office | 0 | 0 | 2009-07-27T11:14:09-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);