lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "664661b4-3b84-4988-b38e-aac41e2733e4" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 902550 | BIPARTISAN POLICY CENTER ACTION 664661b4-3b84-4988-b38e-aac41e2733e4 | 3A | BIPARTISAN POLICY CENTER ACTION | 400359642 | BIPARTISAN POLICY CENTER ACTION | 2009 | third_quarter | HCR | Previous reported activity listed in error | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 550000 | 0 | 0 | 2010-06-02T16:18:23.593000-04:00 | |
| 902551 | BIPARTISAN POLICY CENTER ACTION 664661b4-3b84-4988-b38e-aac41e2733e4 | 3A | BIPARTISAN POLICY CENTER ACTION | 400359642 | BIPARTISAN POLICY CENTER ACTION | 2009 | third_quarter | FIN | Rating Accountability and Transparency Enhancement (RATE) Act of 2009 (S. 1073), all provisions. | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 550000 | 0 | 0 | 2010-06-02T16:18:23.593000-04:00 | |
| 902552 | BIPARTISAN POLICY CENTER ACTION 664661b4-3b84-4988-b38e-aac41e2733e4 | 3A | BIPARTISAN POLICY CENTER ACTION | 400359642 | BIPARTISAN POLICY CENTER ACTION | 2009 | third_quarter | TRA | Reform and reauthorization of federal surface transportation programs, focused on performance-based, accountable, and goal-oriented evaluation of federal programs. | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 550000 | 0 | 0 | 2010-06-02T16:18:23.593000-04:00 | |
| 902553 | BIPARTISAN POLICY CENTER ACTION 664661b4-3b84-4988-b38e-aac41e2733e4 | 3A | BIPARTISAN POLICY CENTER ACTION | 400359642 | BIPARTISAN POLICY CENTER ACTION | 2009 | third_quarter | ENG | American Clean Energy and Security Act of 2009 (HR 2454), provisions relating to allowance allocations, technology deployment, targets and timetables, U.S. competitiveness and commensurate international actions, support for mandatory, economy-wide cap and trade mitigation legislation, including safety-valve provision for cost-containment; investment in clean energy. Clean Energy Jobs and America Power Act (S. 1733), all provisions. Iran Refined Petroleum Sanctions Act of 2009 (HR 2194/S 908), all provisions. American Clean Energy Leadership Act of 2009 (S. 1462), all provisions. Energy Security: Support for increasing domestic production of low-carbon emission energy sources and thereby reducing dependence on imported energy. | HOUSE OF REPRESENTATIVES,SENATE,Treasury, Dept of | 550000 | 0 | 0 | 2010-06-02T16:18:23.593000-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);