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

5 rows where package_id = "CHRG-119hhrg60992" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title

organization 5

  • American Enterprise Institute 1
  • Better Markets 1
  • Consumer Bankers Association 1
  • Investment Company Institute 1
  • Securities Industry and Financial Markets Association 1
id package_id name ▼ title organization organization_normalized location
108354 DODD-FRANK TURNS 15: LESSONS LEARNED AND THE ROAD AHEAD CHRG-119hhrg60992 Dr. Paul Kupiec Senior Fellow American Enterprise Institute AMERICAN ENTERPRISE INSTITUTE  
108351 DODD-FRANK TURNS 15: LESSONS LEARNED AND THE ROAD AHEAD CHRG-119hhrg60992 Hon. Ken Bentsen President and Chief Executive Officer Securities Industry and Financial Markets Association SECURITIES INDUSTRY AND FINANCIAL MARKETS ASSOCIATION  
108355 DODD-FRANK TURNS 15: LESSONS LEARNED AND THE ROAD AHEAD CHRG-119hhrg60992 Mr. Dennis Kelleher Co-Founder, President, and Chief Executive Officer Better Markets BETTER MARKETS  
108353 DODD-FRANK TURNS 15: LESSONS LEARNED AND THE ROAD AHEAD CHRG-119hhrg60992 Mr. Tom Quaadman Chief of Government Affairs and Public Policy Investment Company Institute INVESTMENT COMPANY INSTITUTE  
108352 DODD-FRANK TURNS 15: LESSONS LEARNED AND THE ROAD AHEAD CHRG-119hhrg60992 Mrs. Lindsey Johnson President and Chief Executive Officer Consumer Bankers Association CONSUMER BANKERS ASSOCIATION  

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