lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_uuid = "8e4e4dab-b6b4-4fa0-ae45-3eb14f95cda7" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 988481 | FORSCEY, PLLC 8e4e4dab-b6b4-4fa0-ae45-3eb14f95cda7 | Q3 | FORSCEY, PLLC | 52880 | AMERICAN ASSOCIATION FOR JUSTICE | 2010 | third_quarter | TOR | S. 512 & H.R. 1237, Fairness in Nursing Home Arbitration Act of 2009; H.R. 1020, Arbitration Fairness Act of 2009 Work in opposition to federal preemption of state-based causes of action; Establish federal limits on predispute arbitration agreements; Legislation to ban the importation processing and use of asbestos; Amendments to Erisa Preemption; | HOUSE OF REPRESENTATIVES,SENATE | 50000 | 0 | 0 | 2010-10-07T10:08:21.060000-04:00 | |
| 988482 | FORSCEY, PLLC 8e4e4dab-b6b4-4fa0-ae45-3eb14f95cda7 | Q3 | FORSCEY, PLLC | 52880 | AMERICAN ASSOCIATION FOR JUSTICE | 2010 | third_quarter | TRA | Amendments to improve remedies and insurance coverage under DOHSA, highway safety, maritime and aviation laws. Repeal Graves Amendment Preemption State Vicarious Liability laws. | HOUSE OF REPRESENTATIVES,SENATE | 50000 | 0 | 0 | 2010-10-07T10:08:21.060000-04:00 | |
| 988483 | FORSCEY, PLLC 8e4e4dab-b6b4-4fa0-ae45-3eb14f95cda7 | Q3 | FORSCEY, PLLC | 52880 | AMERICAN ASSOCIATION FOR JUSTICE | 2010 | third_quarter | HCR | S. 1679 & H.R. 3200, Affordable Health Choices Act; S. 1796, America's Healthy Future Act; S. 540 & H.R. 1346, Medical Device Safety Act of 2009; Proposed amendments to Medicare Secondary Payer Statute and to H. R. 2641, the Medicare Secondary Payer and Workers' Compensation Settlement Agreements Act of 2009; To ensure patients' right to recover in cases of medical malpractice; Amendments to ERISA preemption. | HOUSE OF REPRESENTATIVES,SENATE | 50000 | 0 | 0 | 2010-10-07T10:08:21.060000-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);