hearing_witnesses
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where package_id = "CHRG-111hhrg78135" sorted by name
This data as json, CSV (advanced)
Suggested facets: title
| id | package_id | name ▼ | title | organization | organization_normalized | location |
|---|---|---|---|---|---|---|
| 49418 | CUTTING WASTE, FRAUD, AND ABUSE IN MEDICARE AND MEDICAID CHRG-111hhrg78135 | Hon. Daniel Levinson | Inspector General, Office of the Inspector General, U.S. Department of Health and Human Services | |||
| 49416 | CUTTING WASTE, FRAUD, AND ABUSE IN MEDICARE AND MEDICAID CHRG-111hhrg78135 | Hon. Peter Roskam | a Representative in Congress from the State of Illinois | A REPRESENTATIVE IN CONGRESS FROM THE STATE OF ILLINOIS | ||
| 49417 | CUTTING WASTE, FRAUD, AND ABUSE IN MEDICARE AND MEDICAID CHRG-111hhrg78135 | Hon. Ron Klein | a Representative in Congress from the State of Florida | A REPRESENTATIVE IN CONGRESS FROM THE STATE OF FLORIDA | ||
| 49419 | CUTTING WASTE, FRAUD, AND ABUSE IN MEDICARE AND MEDICAID CHRG-111hhrg78135 | Peter Budetti | M.D., Deputy Administrator for Program Integrity, Centers for Medicare & Medicaid Services, U.S. Department of Health and Human Services |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE hearing_witnesses (
id INTEGER PRIMARY KEY AUTOINCREMENT,
package_id TEXT NOT NULL REFERENCES hearings(package_id),
name TEXT,
title TEXT,
organization TEXT,
organization_normalized TEXT,
location TEXT
);
CREATE INDEX idx_hw_package ON hearing_witnesses(package_id);
CREATE INDEX idx_hw_name ON hearing_witnesses(name);
CREATE INDEX idx_hw_org ON hearing_witnesses(organization) WHERE organization IS NOT NULL AND organization != '';
CREATE INDEX idx_hw_org_norm ON hearing_witnesses(organization_normalized) WHERE organization_normalized IS NOT NULL;