hearing_witnesses
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where package_id = "CHRG-108hhrg95499" sorted by name
This data as json, CSV (advanced)
| id | package_id | name ▼ | title | organization | organization_normalized | location |
|---|---|---|---|---|---|---|
| 18323 | RECOMMENDATIONS OF THE 9/11 COMMISSION CHRG-108hhrg95499 | Mr. Christopher Kojm | Deputy Executive Director | National Commission on Terrorist Attacks Upon the United States (``9/11 Commission'') | NATIONAL COMMISSION ON TERRORIST ATTACKS UPON THE UNITED STATES (``9/11 COMMISSION'') | |
| 18326 | RECOMMENDATIONS OF THE 9/11 COMMISSION CHRG-108hhrg95499 | Mr. Gregory T. Nojeim | Associate Director and Chief Legislative Counsel | American Civil Liberties Union | AMERICAN CIVIL LIBERTIES UNION | |
| 18325 | RECOMMENDATIONS OF THE 9/11 COMMISSION CHRG-108hhrg95499 | Mr. John O. Brennan | Director | Terrorist Threat Integration Center | TERRORIST THREAT INTEGRATION CENTER | |
| 18324 | RECOMMENDATIONS OF THE 9/11 COMMISSION CHRG-108hhrg95499 | Mr. John S. Pistole | Executive Assistant Director | Counterterrorism/Counterintelligence, Federal Bureau of Investigation | COUNTERTERRORISM/COUNTERINTELLIGENCE, FEDERAL BUREAU OF INVESTIGATION |
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;