lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_uuid = "cf0afede-fb2c-4e97-b475-0d8ba2c8bec0" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 761353 | VALERIE MORSE WHITE CONSULTING cf0afede-fb2c-4e97-b475-0d8ba2c8bec0 | Q1 | VALERIE MORSE WHITE CONSULTING | 40041336 | EBAY INC (PAYPAL) | 2009 | first_quarter | BAN | H.R.627, the Credit Cardholders Bill of Rights Act of 2009 - provisions affecting deferred interest plans. S.414, the Credit Card Accountability & Disclosure Act of 2009 - provisions affecting deferred interest plans. | Federal Reserve System,HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2009-04-19T16:21:15-04:00 | |
| 761354 | VALERIE MORSE WHITE CONSULTING cf0afede-fb2c-4e97-b475-0d8ba2c8bec0 | Q1 | VALERIE MORSE WHITE CONSULTING | 40041336 | EBAY INC (PAYPAL) | 2009 | first_quarter | FIN | H.R.1705- Financial Product Safety Commission Act of 2009, provisions creating a financial protection regulator. H.R.1754 - the Financial System Stabilization and Reform Act of 2009 ,provisions reestablishing financial regulatory structure. | Federal Reserve System,HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2009-04-19T16:21:15-04:00 | |
| 761355 | VALERIE MORSE WHITE CONSULTING cf0afede-fb2c-4e97-b475-0d8ba2c8bec0 | Q1 | VALERIE MORSE WHITE CONSULTING | 40041336 | EBAY INC (PAYPAL) | 2009 | first_quarter | BNK | H.R.1106, the Helping Families Save Their Homes Act of 2009, provisions relating to cramdown of first mortgages. H.R.200 - the Helping Families Save Their Homes from Bankruptcy Act of 2009, provisions relating to cramdown of first mortgages. | Federal Reserve System,HOUSE OF REPRESENTATIVES,SENATE | 20000 | 0 | 0 | 2009-04-19T16:21:15-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);