lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where filing_uuid = "bcb36cd6-e035-42ff-b7fa-21381b0fde7f" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2771596 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | HCR | Medicaid home and community based services (HCBS); orphan & rare disease issues, including Orphan Drug Tax Credit; coverage restrictions; Better Care Better Jobs Act (H.R. 4131/S. 2210); 21st Century Cures Act (P.L. 114-255); Safe Step Act (H.R. 2163/ S. 464); Cures 2.0 (H.R. 6000); Build Back Better (H.R. 5376); BENEFIT Act (H.R. 4472; S. 373) | Centers For Disease Control & Prevention (CDC),Centers For Medicare and Medicaid Services (CMS),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771597 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | BUD | Newborn screening funding; disability program funding; rare disease funding | Centers For Disease Control & Prevention (CDC),Education, Dept of,Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Labor, Dept of (DOL),Natl Institutes of Health (NIH),SENATE,Transportation, Dept of (DOT) | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771598 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | EDU | Disability accommodations; Individuals with Disabilities Education Act; Keep Our PACT Act (H.R. 764/ S. 72); Funding Early Childhood is the Right IDEA Act (H.R. 6532/ S. 3544) | Education, Dept of,HOUSE OF REPRESENTATIVES,SENATE | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771599 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | TRA | Air Carrier Access Amendments Act (H.R. 1696/S. 642); accessible transportation for people with disabilities; accessible air travel; Disability Access to Transportation Act (H.R.1697/S. 2038); Infrastructure Investment and Jobs Act (PL 117-58) | HOUSE OF REPRESENTATIVES,SENATE,Transportation, Dept of (DOT) | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771600 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | CIV | Americans with Disabilities Act, healthcare access, nondiscrimination for people with disabilities; Supplemental Security Income Restoration Act (H.R. 3824/ S. 2065); ABLE Age Adjustment Act (H.R. 1219/ S. 331) | Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE,White House Office | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771601 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | UNM | Employment for people with disabilities; vocational rehabilitation program; Disability Employment Incentive Act (H.R. 3765/ S. 630); Transformation to Competitive Integrated Employment Act (H.R. 2373/ S. 642) | Education, Dept of,HOUSE OF REPRESENTATIVES,Labor, Dept of (DOL),SENATE | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771602 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | MMM | Medicaid home and community-based services (HCBS); healthcare access, including to patient-preferred treatment, assistive technology devices and durable medical equipment; Better Care Better Jobs Act (H.R. 4131/ S. 2210); Build Back Better Act (H.R. 5376) | Centers For Medicare and Medicaid Services (CMS),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE | 35000 | 0 | 0 | 2022-04-11T15:49:05-04:00 | |
| 2771603 | CURE SMA bcb36cd6-e035-42ff-b7fa-21381b0fde7f | Q1 | CURE SMA | 401104586 | CURE SMA | 2022 | first_quarter | TAX | ABLE Age Adjustment Act (H.R. 1219/ S. 331); Orphan Drug Tax Credit; Disability Employment Incentive Act (H.R. 3765/ S. 630); disability employment tax incentives | HOUSE OF REPRESENTATIVES,SENATE | 35000 | 0 | 0 | 2022-04-11T15:49:05-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);