lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f20d61cf-e804-49f2-9b3a-c9da2d75c216" and issue_code = "CDT" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 659606 | PROCESS HANDLER ET AL. FOR HIRE, INC. f20d61cf-e804-49f2-9b3a-c9da2d75c216 | Q3 | PROCESS HANDLER ET AL. FOR HIRE, INC. | 81830 | MS SCOTT SCHRAMMAR | 2008 | third_quarter | CDT | Various 09/14/2008 telephonic messages left with (and mainly monologues with) the Office of the U.S. Vice President's Domestic Policy suboffice/desk, U.S. Federal Reserve System's Board of Governors, U.S. National Economic Council's senior staff et al. regarding select clients' stake simultaneously in "looking at all the books" of all the investment houses who want an unconditional bailout WITH said Federal Reserve System, among various other definitely-interested governmental agencies and departments. Various September 14, 2008 telephonic messages left with (and mainly monologues with) the Office of the Vice President of the United States' Domestic Policy suboffice/desk, United States Federal Reserve System's main Board of Governors, United States National Economic Council's Deputy Director, United States National Security Council's International Economics suboffice/desk and the United States Deputy Secretary of the Treasury, among several various other federal executive offices, agencies and departments, regarding select clients (i.e., the Estates of Alfred Schrammar, Delois Albert Brassell (and its sole Administrator), Jane Carbis (and both its co-executrixes), Robert James Brassell (and its sole Administrator) and Walter F. McCarthy, and Mr. Scott Schrammar, Mrs. Delois Brassell, Mrs. Joan A. Schrammar-McCarthy and Ms. Joal Schrammar (main beneficiaries of the aforementioned Jane Carbis Estate)) and our firm and its principal's personal and professional stake in "looking at all the books" of all the investment houses who want a mainly unconditional bailout WITH the aforementioned Federal Reserve System (i.e., us and the Federal Reserve SIMULTANEOUSLY AND TOGETHER "looking at all the books" BEFORE any bailout of the investment houses are even discussed to actually know and verify WHAT is being bailed out), among various other definitely-interested governmental agencies and departments. | Executive Office of the President (EOP),Federal Reserve System,Natl Economic Council (NEC),Natl Security Council (NSC),Office of Policy Development,Office of the Vice President of the United States,President of the U.S.,Treasury, Dept of,Vice President of the U.S.,White House Office | 0 | 0 | 2008-09-20T13:53:58-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);