hearing_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where package_id = "CHRG-85shrg27235" sorted by name
This data as json, CSV (advanced)
role 1
| Link | package_id | name ▼ | role | bioguide_id |
|---|---|---|---|---|
| CHRG-85shrg27235,Alan Bible | District of Columbia appropriations, 1959: hearings before the subcommittee of the Committee on Appropriations, United States Senate, Eighty-fifth Congress, second session, on H.R. 12948 � CHRG-85shrg27235 | Alan Bible | committee member | B000436 |
| CHRG-85shrg27235,John L. McClellan | District of Columbia appropriations, 1959: hearings before the subcommittee of the Committee on Appropriations, United States Senate, Eighty-fifth Congress, second session, on H.R. 12948 � CHRG-85shrg27235 | John L. McClellan | committee member | M000332 |
| CHRG-85shrg27235,John O. Pastore | District of Columbia appropriations, 1959: hearings before the subcommittee of the Committee on Appropriations, United States Senate, Eighty-fifth Congress, second session, on H.R. 12948 � CHRG-85shrg27235 | John O. Pastore | committee member | P000100 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE hearing_members (
package_id TEXT NOT NULL REFERENCES hearings(package_id),
name TEXT NOT NULL,
role TEXT,
bioguide_id TEXT,
PRIMARY KEY (package_id, name)
);
CREATE INDEX idx_hm_name ON hearing_members(name);
CREATE INDEX idx_hm_bioguide ON hearing_members(bioguide_id);
CREATE INDEX idx_hearing_members_package ON hearing_members(package_id);