home / openregs

hearing_witnesses

Witnesses who testified at committee hearings, with parsed name, title, organization, and location.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

4 rows where package_id = "CHRG-114hhrg22460" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 4

  • Commander, Air Force Research Laboratory 1
  • Engineer Research and Development Center, U.S. Army Corps of Engineers, Waterways Experiment Station 1
  • Naval Research Laboratory 1
  • United States Army Research Laboratory 1
id package_id name ▼ title organization organization_normalized location
73585 [H.A.S.C. No. 114-142] Department of Defense Laboratories: Innovation Through Science and Engineering In Support of Military Operations CHRG-114hhrg22460 Dr. Edward R. Franchi Acting Director of Research Naval Research Laboratory NAVAL RESEARCH LABORATORY  
73586 [H.A.S.C. No. 114-142] Department of Defense Laboratories: Innovation Through Science and Engineering In Support of Military Operations CHRG-114hhrg22460 Dr. Jeffery P. Holland Director Engineer Research and Development Center, U.S. Army Corps of Engineers, Waterways Experiment Station ENGINEER RESEARCH AND DEVELOPMENT CENTER, U.S. ARMY CORPS OF ENGINEERS, WATERWAYS EXPERIMENT STATION  
73588 [H.A.S.C. No. 114-142] Department of Defense Laboratories: Innovation Through Science and Engineering In Support of Military Operations CHRG-114hhrg22460 Dr. Philip Perconti Acting Director United States Army Research Laboratory UNITED STATES ARMY RESEARCH LABORATORY  
73587 [H.A.S.C. No. 114-142] Department of Defense Laboratories: Innovation Through Science and Engineering In Support of Military Operations CHRG-114hhrg22460 Maj Gen Robert D. McMurry USAF Commander, Air Force Research Laboratory COMMANDER, AIR FORCE RESEARCH LABORATORY  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 4.553ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API