lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where filing_uuid = "4645c2b7-eeb8-4ebd-849d-a2c4e9da5a09" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1620596 | RED+BLUE STRATEGIES 4645c2b7-eeb8-4ebd-849d-a2c4e9da5a09 | Q4 | RED+BLUE STRATEGIES | 400693064 | CHILDREN'S HOSPITAL ASSOCIATION F/K/A NAT'L ASSOCIATION OF CHILDREN'S HOSPITALS | 2014 | fourth_quarter | HCR | House and Senate - Health and Human Services Appropriations Bills related to funding for CHGME President Obama's FY2015 budget - focused on issues for CHGME and Medicaid Working with CMMI on challenge grant demonstrations to help pediatric providers serving children with multiple complex conditions. Essential Health Benefits regulations - focused on how the ACA EHB regulations impact children and children's access to services that are unique to the non-adult population. Developing policies related to delivery system reform constructs for children with medically complex conditions. S. 1871/S. 2110/H.R. 4302 - SGR legislation with a focus on extenders provisions impacting Medicaid provisions and CHIP quality programs. H.R. 4930 - ACE Kids Act of 2014 - Focused on developing new strategies for caring for children with multiple complex conditions. S. 2561 - CHIP Extension Act of 2014 - Focused on reauthorizing the Children's Health Insurance Program. H.R. 83- Consolidated and Further Continuing Appropriations Act of 2015 - working on potential inclusion of issues related to CHIP Reauthorization. Issues related to the continuation of pediatric centers of excellence focused on measuring quality. | Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 60000 | 0 | 0 | 2015-01-14T14:51:27.147000-05:00 | |
| 1620597 | RED+BLUE STRATEGIES 4645c2b7-eeb8-4ebd-849d-a2c4e9da5a09 | Q4 | RED+BLUE STRATEGIES | 400693064 | CHILDREN'S HOSPITAL ASSOCIATION F/K/A NAT'L ASSOCIATION OF CHILDREN'S HOSPITALS | 2014 | fourth_quarter | MMM | President Obama's FY2015 budget - focused on issues for CHGME and Medicaid Working with CMMI on challenge grant demonstrations to help pediatric providers serving children with multiple complex conditions. Developing policies related to delivery system reform constructs for children with medically complex conditions. S. 1871/S. 2110/H.R. 4302 - SGR legislation with a focus on extenders provisions impacting Medicaid provisions and CHIP quality programs. H.R. 4930 - ACE Kids Act of 2014 - Focused on developing new strategies for caring for children with multiple complex conditions. S. 2561 - CHIP Extension Act of 2014 - Focused on reauthorizing the Children's Health Insurance Program. H.R. 83- Consolidated and Further Continuing Appropriations Act of 2015 - working on potential inclusion of issues related to CHIP Reauthorization. | Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 60000 | 0 | 0 | 2015-01-14T14:51:27.147000-05: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);