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-118hhrg56595" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 5

  • American Enterprise Institute 1
  • Americans for Responsible Innovation 1
  • Fred L. Smith Fellow in Regulatory Studies, Competitive Enterprise Institute 1
  • Georgetown University Law Center 1
  • Thomas A. Roe Institute for Economic Policy Studies 1
id package_id name ▼ title organization organization_normalized location
104836 CONGRESS IN A POST-CHEVRON WORLD CHRG-118hhrg56595 Josh Chafetz Agnes Williams Sesquicentennial Professor of Law and Politics Georgetown University Law Center GEORGETOWN UNIVERSITY LAW CENTER  
104834 CONGRESS IN A POST-CHEVRON WORLD CHRG-118hhrg56595 Kevin Kosar Resident Senior Fellow American Enterprise Institute AMERICAN ENTERPRISE INSTITUTE  
104832 CONGRESS IN A POST-CHEVRON WORLD CHRG-118hhrg56595 Paul J. Ray director Thomas A. Roe Institute for Economic Policy Studies THOMAS A. ROE INSTITUTE FOR ECONOMIC POLICY STUDIES  
104833 CONGRESS IN A POST-CHEVRON WORLD CHRG-118hhrg56595 Satya Thallam senior vice president of government affairs Americans for Responsible Innovation AMERICANS FOR RESPONSIBLE INNOVATION  
104835 CONGRESS IN A POST-CHEVRON WORLD CHRG-118hhrg56595 Wayne Crews   Fred L. Smith Fellow in Regulatory Studies, Competitive Enterprise Institute FRED L. SMITH FELLOW IN REGULATORY STUDIES, COMPETITIVE ENTERPRISE INSTITUTE  

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