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-111shrg63651" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title

organization 6

  • Connecticut Construction Industries Association, Inc 1
  • Department of Transportation 1
  • Department of the Treasury 1
  • Governor, Commonwealth of Pennsylvania, and Cochair, Building America's Future 1
  • Senator from the State of Massachusetts 1
  • UBS Americas 1
id package_id name ▼ title organization organization_normalized location
52106 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 Alan B. Krueger Assistant Secretary for Economic Policy and Chief Economist Department of the Treasury DEPARTMENT OF THE TREASURY  
52109 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 Donald Shubert President Connecticut Construction Industries Association, Inc CONNECTICUT CONSTRUCTION INDUSTRIES ASSOCIATION, INC  
52107 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 Edward G. Rendell   Governor, Commonwealth of Pennsylvania, and Cochair, Building America's Future GOVERNOR, COMMONWEALTH OF PENNSYLVANIA, AND COCHAIR, BUILDING AMERICA'S FUTURE  
52104 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 John F. Kerry   Senator from the State of Massachusetts SENATOR FROM THE STATE OF MASSACHUSETTS  
52108 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 Robert Wolf Chairman and Chief Executive Officer UBS Americas UBS AMERICAS  
52105 INVESTING IN INFRASTRUCTURE: CREATING JOBS AND GROWING THE ECONOMY CHRG-111shrg63651 Roy Kienitz Under Secretary for Policy Department of Transportation DEPARTMENT OF TRANSPORTATION  

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