lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_uuid = "2c87a2c3-e9c3-42aa-bfc0-8bc354094e75" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 667546 | AVENUE SOLUTIONS 2c87a2c3-e9c3-42aa-bfc0-8bc354094e75 | Q3 | AVENUE SOLUTIONS | 72111 | EXPRESS SCRIPTS INC | 2008 | third_quarter | HCR | S.1693 Wired for health Care Quality Act; HR 3800 Promoting Health Information Technology Act; HR 5442 Technologies for Restoring Users Security and Trust in Health Information Act of 2008; Health Information Technology (HIT); HR 6357 PRO(TECH)T Act of 2008: Protecting Records, Optimizing Treatment, and Easing Communication through Healthcare Technology Act of 2008; HR 6898, Health-e Information Technology Act of 2008; HR 1424 EMERGENCY ECONOMIC STABILIZATION ACT OF 2008. | HOUSE OF REPRESENTATIVES,SENATE | 80000 | 0 | 0 | 2008-10-15T16:18:37-04:00 | |
| 667547 | AVENUE SOLUTIONS 2c87a2c3-e9c3-42aa-bfc0-8bc354094e75 | Q3 | AVENUE SOLUTIONS | 72111 | EXPRESS SCRIPTS INC | 2008 | third_quarter | MMM | HR 6331/S.3101 Medicare Improvements for Patients and Providers Act of 2008; S.3144/HR 6252 Medicare DMEPOS Competitive Acquisition Reform Act of 2008; Delay in competitive bidding for DME and supplies; HR 4296/S 2408 Medicare Electronic Medication and Safety Protection Act of 2007 (E-MEDS); E-prescribing. | HOUSE OF REPRESENTATIVES,SENATE | 80000 | 0 | 0 | 2008-10-15T16:18:37-04:00 | |
| 667548 | AVENUE SOLUTIONS 2c87a2c3-e9c3-42aa-bfc0-8bc354094e75 | Q3 | AVENUE SOLUTIONS | 72111 | EXPRESS SCRIPTS INC | 2008 | third_quarter | PHA | Issues relating to prompt pay. | HOUSE OF REPRESENTATIVES,SENATE | 80000 | 0 | 0 | 2008-10-15T16:18:37-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);