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

6 rows where package_id = "CHRG-119hhrg61749" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title

organization 6

  • AH Datalytics 1
  • Charlotte-Mecklenburg Police Department 1
  • Father of Crime Victim 1
  • Grandmother of Crime Victim 1
  • North Carolina Bail Agents Association 1
  • Western District of North Carolina 1
id package_id name ▼ title organization organization_normalized location
108683 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Dena J. King Former U.S. District Attorney Western District of North Carolina WESTERN DISTRICT OF NORTH CAROLINA  
108684 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Jeff Asher Co-Founder AH Datalytics AH DATALYTICS  
108681 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Justin Campbell Officer Charlotte-Mecklenburg Police Department CHARLOTTE-MECKLENBURG POLICE DEPARTMENT  
108679 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Mia Alderman   Grandmother of Crime Victim GRANDMOTHER OF CRIME VICTIM  
108682 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Michael Woody Board of Directors North Carolina Bail Agents Association NORTH CAROLINA BAIL AGENTS ASSOCIATION  
108680 VICTIMS OF VIOLENT CRIME CHRG-119hhrg61749 Stephen Federico   Father of Crime Victim FATHER OF CRIME VICTIM  

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 1430.39ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API