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-106hhrg66964" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title

organization 4

  • David A. Smith 1
  • Inc., Robert C. Gross 1
  • Raymond J. Uhalde, Employment and Training Administration, accompanied by Grace Kilbane, Office of Workforce Security 1
  • and Tyson Foods, Inc., Chuck Yarbrough 1
id package_id name ▼ title organization organization_normalized location
5270 UNEMPLOYMENT COMPENSATION CHRG-106hhrg66964 American Federation of Labor-Congress of Industrial Organizations   David A. Smith DAVID A. SMITH  
5271 UNEMPLOYMENT COMPENSATION CHRG-106hhrg66964 Interstate Conference of Employment Security Agencies and Utah Department of Workforce Services Inc., Robert C. Gross INC., ROBERT C. GROSS  
5269 UNEMPLOYMENT COMPENSATION CHRG-106hhrg66964 U.S. Department of Labor Deputy Assistant Secretary, Administrator Raymond J. Uhalde, Employment and Training Administration, accompanied by Grace Kilbane, Office of Workforce Security RAYMOND J. UHALDE, EMPLOYMENT AND TRAINING ADMINISTRATION, ACCOMPANIED BY GRACE KILBANE, OFFICE OF WORKFORCE SECURITY  
5272 UNEMPLOYMENT COMPENSATION CHRG-106hhrg66964 UWC-Strategic Services of Unemployment & Workers' Compensation   and Tyson Foods, Inc., Chuck Yarbrough AND TYSON FOODS, INC., CHUCK YARBROUGH  

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