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-113shrg95437" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 4

  • Boeing Capital Corporation 1
  • Physical Infrastructure Issues, U.S. Government Accountability Office 1
  • RAND Environment, Energy, Pardee RAND Graduate School, Washington Office, RAND Corporation 1
  • U.S. Senator from Illinois 1
id package_id name ▼ title organization organization_normalized location
71893 DOMESTIC CHALLENGES AND GLOBAL COMPETITION IN AVIATION MANUFACTURING CHRG-113shrg95437 Bertrand-Marc Allen President Boeing Capital Corporation BOEING CAPITAL CORPORATION  
71892 DOMESTIC CHALLENGES AND GLOBAL COMPETITION IN AVIATION MANUFACTURING CHRG-113shrg95437 Gerald Dillingham Ph.D., Director Physical Infrastructure Issues, U.S. Government Accountability Office PHYSICAL INFRASTRUCTURE ISSUES, U.S. GOVERNMENT ACCOUNTABILITY OFFICE  
71891 DOMESTIC CHALLENGES AND GLOBAL COMPETITION IN AVIATION MANUFACTURING CHRG-113shrg95437 Hon. Mark Kirk   U.S. Senator from Illinois U.S. SENATOR FROM ILLINOIS  
71894 DOMESTIC CHALLENGES AND GLOBAL COMPETITION IN AVIATION MANUFACTURING CHRG-113shrg95437 Keith Crane Ph.D., Director, and Economic Development Program; Professor RAND Environment, Energy, Pardee RAND Graduate School, Washington Office, RAND Corporation RAND ENVIRONMENT, ENERGY, PARDEE RAND GRADUATE SCHOOL, WASHINGTON OFFICE, RAND CORPORATION  

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