lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "ddca8b4f-bb5c-40d8-93a0-e9b17e11b9ca" and issue_code = "HCR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1239820 | AMERICAN CANCER SOCIETY, CALIFORNIA DIVISION, INC. ddca8b4f-bb5c-40d8-93a0-e9b17e11b9ca | Q1 | AMERICAN CANCER SOCIETY, CALIFORNIA DIVISION, INC. | 312576 | AMERICAN CANCER SOCIETY CALIFORNIA DIVISION INC | 2012 | first_quarter | HCR | Issues relating to health disparities, health care reform, quality of life, federal health care programs, genetic information, cancer, nutrition, and wellness, including the following legislation: S. 494 and H.R. 912, Colorectal Cancer Prevention, Early Detection & treatment Act; H.R. 1213, Repeal mandatory funding provided to states in PPACA to establish American Health Benefit Exchanges; H.R. 1217, Repeal Prevention and Public Health Fund; H.R. 1740 and H.R. 5560, the Quality Cancer Care for Life Act of 2010; H.R. 2941 and S. 3493; HR 3974, Viral Hepatitis and Liver Cancer Control and Prevention Act of 2009; HR 4662, the Lymphedema Diagnosis and Treatment Cost Savings Act of 2010; the implementation of P.L. 111-148, the Patient Protection and Affordable Care Act of 2010; S. 1064, the Sun Act; S. 965, the Family Act; HR 2954, Health Equity and Accountability Act of 2011; and HR 2077, the MLR Repeal Act; H.R. 2245 and S. 296 Preserving Access to Life-Saving Medications Act, issues related to the reauthorization of the prescription drug user fee, and issues relating to the ongoing national shortage of cancer drugs. | HOUSE OF REPRESENTATIVES,SENATE | 360000 | 0 | 0 | 2012-04-19T16:56:41.317000-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);