hearing_witnesses
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where package_id = "CHRG-109shrg66985" sorted by name
This data as json, CSV (advanced)
organization 5
- Department of Transportation 1
- Department of Transportation and Public Facilities, State of Alaska 1
- Hill County, Montana Association of Counties (MACo), ;National Association of Counties 1
- Legislative Affairs, Regional Airline Association 1
- Physical Infrastructure Issues, U.S. Government Accountability Office 1
| id | package_id | name ▼ | title | organization | organization_normalized | location |
|---|---|---|---|---|---|---|
| 28991 | RURAL AIR SERVICE CHRG-109shrg66985 | Faye Malarkey | Vice President | Legislative Affairs, Regional Airline Association | LEGISLATIVE AFFAIRS, REGIONAL AIRLINE ASSOCIATION | |
| 28989 | RURAL AIR SERVICE CHRG-109shrg66985 | Gerald L. Dillingham | Director | Physical Infrastructure Issues, U.S. Government Accountability Office | PHYSICAL INFRASTRUCTURE ISSUES, U.S. GOVERNMENT ACCOUNTABILITY OFFICE | |
| 28990 | RURAL AIR SERVICE CHRG-109shrg66985 | Hon. Douglas Kaercher | County Commissioner, Montana; on Behalf of the President | Hill County, Montana Association of Counties (MACo), ;National Association of Counties | HILL COUNTY, MONTANA ASSOCIATION OF COUNTIES (MACO), ;NATIONAL ASSOCIATION OF COUNTIES | |
| 28993 | RURAL AIR SERVICE CHRG-109shrg66985 | John Torgerson | Deputy Commissioner of Aviation | Department of Transportation and Public Facilities, State of Alaska | DEPARTMENT OF TRANSPORTATION AND PUBLIC FACILITIES, STATE OF ALASKA | |
| 28992 | RURAL AIR SERVICE CHRG-109shrg66985 | Michael W. Reynolds | Acting Assistant Secretary for Aviation and International Affairs | Department of Transportation | DEPARTMENT OF TRANSPORTATION |
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;