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-113shrg93566" sorted by name

✎ View and edit SQL

This data as json, CSV (advanced)

organization 5

  • Cyber Division, Federal Bureau of Investigation, Department of Justice 1
  • Cyber Operations Branch, Criminal Investigative Division 1
  • Department of Homeland Security 1
  • Department of the Treasury 1
  • Office of the Comptroller of the Currency 1
id package_id name ▼ title organization organization_normalized location
71674 CYBERSECURITY: ENHANCING COORDINATION TO PROTECT THE FINANCIAL SECTOR CHRG-113shrg93566 Brian Peretti Director for the Office of Critical Infrastructure Protection and Compliance Policy Department of the Treasury DEPARTMENT OF THE TREASURY  
71678 CYBERSECURITY: ENHANCING COORDINATION TO PROTECT THE FINANCIAL SECTOR CHRG-113shrg93566 Joseph M. Demarest Jr., Assistant Director Cyber Division, Federal Bureau of Investigation, Department of Justice CYBER DIVISION, FEDERAL BUREAU OF INVESTIGATION, DEPARTMENT OF JUSTICE  
71675 CYBERSECURITY: ENHANCING COORDINATION TO PROTECT THE FINANCIAL SECTOR CHRG-113shrg93566 Phyllis Schneck Deputy Under Secretary for Cybersecurity and Communications, National Protection and Programs Directorate Department of Homeland Security DEPARTMENT OF HOMELAND SECURITY  
71676 CYBERSECURITY: ENHANCING COORDINATION TO PROTECT THE FINANCIAL SECTOR CHRG-113shrg93566 Valerie Abend Senior Critical Infrastructure Officer Office of the Comptroller of the Currency OFFICE OF THE COMPTROLLER OF THE CURRENCY  
71677 CYBERSECURITY: ENHANCING COORDINATION TO PROTECT THE FINANCIAL SECTOR CHRG-113shrg93566 William Noonan Deputy Special Agent in Charge, Secret Service Cyber Operations Branch, Criminal Investigative Division CYBER OPERATIONS BRANCH, CRIMINAL INVESTIGATIVE DIVISION  

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