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-114hhrg26006" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 4

  • Berenberg Capital 1
  • Sloan School of Management, Massachusetts Institute of Technology 1
  • Stanford University 1
  • Visiting Fellow at the Hoover Institution, Stanford University, Federal Reserve Bank of Philadelphia (2001-2015) 1
id package_id name ▼ title organization organization_normalized location
74427 UNCONVENTIONAL MONETARY POLICY CHRG-114hhrg26006 Charles Plosser and former President and CEO Visiting Fellow at the Hoover Institution, Stanford University, Federal Reserve Bank of Philadelphia (2001-2015) VISITING FELLOW AT THE HOOVER INSTITUTION, STANFORD UNIVERSITY, FEDERAL RESERVE BANK OF PHILADELPHIA (2001-2015)  
74428 UNCONVENTIONAL MONETARY POLICY CHRG-114hhrg26006 John Taylor Professor of Economics Stanford University STANFORD UNIVERSITY  
74426 UNCONVENTIONAL MONETARY POLICY CHRG-114hhrg26006 Mickey D. Levy Managing Director and Chief Economist Berenberg Capital BERENBERG CAPITAL  
74425 UNCONVENTIONAL MONETARY POLICY CHRG-114hhrg26006 Simon Johnson Ronald A. Kurtz Professor of Entrepreneurship, Professor of Global Economics and Management Sloan School of Management, Massachusetts Institute of Technology SLOAN SCHOOL OF MANAGEMENT, MASSACHUSETTS INSTITUTE OF TECHNOLOGY  

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