hearing_witnesses
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
29 rows where package_id = "CHRG-105hhrg51104" sorted by name
This data as json, CSV (advanced)
Suggested facets: title
organization 14
- - 16
- Forest Guardians, Santa Fe, New Mexico 1
- Ike, La Madera, New Mexico 1
- Mayor, Espanola, New Mexico 1
- Mescalero Apache Cattle Growers Association, Mescalero, New Mexico 1
- New Mexico Cattle Growers, Albuquerque, New Mexico 1
- Northern New Mexico Stockmen's Association 1
- People for the USA 1
- Permittee, Santa Fe, New Mexico 1
- Production Credit Association of New Mexico 1
- Rancher, Las Vegas, New Mexico 1
- Rio Grande Forest Products, Inc., Espanola, New Mexico 1
- Tres Piedras Carson National Forest District, El Rito, New Mexico 1
- Truchas Land Grant Association, Chimayo, New Mexico 1
Advanced export
JSON shape: default, array, newline-delimited, object
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;