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-116hhrg43954" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 4

  • Center for Internet Security 1
  • Common Cause: 1
  • Elections Integrity Fellow, Alliance for Securing Democracy, German Marshall Fund of the United States: 1
  • National Vote at Home Institute: 1
id package_id name ▼ title organization organization_normalized location
92692 SECURE, SAFE, AND AUDITABLE: PROTECTING THE INTEGRITY OF THE 2020 ELECTIONS CHRG-116hhrg43954 Mr. David Levine   Elections Integrity Fellow, Alliance for Securing Democracy, German Marshall Fund of the United States: ELECTIONS INTEGRITY FELLOW, ALLIANCE FOR SECURING DEMOCRACY, GERMAN MARSHALL FUND OF THE UNITED STATES:  
92695 SECURE, SAFE, AND AUDITABLE: PROTECTING THE INTEGRITY OF THE 2020 ELECTIONS CHRG-116hhrg43954 Mr. John M. Gilligan President and Chief Executive Officer, Inc.: Center for Internet Security CENTER FOR INTERNET SECURITY  
92694 SECURE, SAFE, AND AUDITABLE: PROTECTING THE INTEGRITY OF THE 2020 ELECTIONS CHRG-116hhrg43954 Ms. Amber McReynolds Chief Executive Officer National Vote at Home Institute: NATIONAL VOTE AT HOME INSTITUTE:  
92693 SECURE, SAFE, AND AUDITABLE: PROTECTING THE INTEGRITY OF THE 2020 ELECTIONS CHRG-116hhrg43954 Ms. Sylvia Albert Director of Voting and Elections Common Cause: COMMON CAUSE:  

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