documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-NRTL1-88-2006-0602" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OSHA-NRTL1-88-2006-0602-0058 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | Supporting Exhibit 31-4; MEMORANDUM FROM K. P. KLOUSE/OSHA TO M. GARRAHAM/OSHA, DATED OCTOBER 22, 2002, CONTAINING RECOMMENDATIONS ON METS 4/30/2002 REQUEST FOR EXPANSION. (CALLED EX. 33 IN NOTICE). | Supporting & Related Material | References/Supporting Documents | 2002-10-22T04:00:00Z | 2002 | 10 | 2016-05-20T23:05:14Z | 0 | 0 | 09000064801fe7d4 | |||
| OSHA-NRTL1-88-2006-0602-0053 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | 30: MET LABORATORIES INC RENEWAL AND EXPANSION OF RECOGNITION. NOTICE | Notice | Federal Register Notices (INCL ETS) | 2002-05-23T04:00:00Z | 2002 | 5 | 2002-05-23T04:00:00Z | 2002-05-24T03:59:59Z | 2016-08-10T20:50:56Z | 0 | 0 | 09000064801fe7cf | |
| OSHA-NRTL1-88-2006-0602-0056 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | Supporting Exhibit 31-2; LETTER FROM KEVIN ROBINSON/MET, DATED APRIL 30, 2002, REQUESTING EXPANSION OF RECOGNITION FOR ADDITIONAL TEST STANDARDS, AND SUPPORTING DOCUMENTATION. (CALLED EX. 32 IN NOTICE). | Supporting & Related Material | References/Supporting Documents | 2002-04-30T04:00:00Z | 2002 | 4 | 2016-05-20T23:05:14Z | 0 | 0 | 09000064801fe7d2 | |||
| OSHA-NRTL1-88-2006-0602-0048 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | 27: MET LABORATORIES INC, APPLICATIONS FOR RENEWAL AND EXPANSION OF RECOGNITION. NOTICE. | Notice | Federal Register Notices (INCL ETS) | 2002-04-11T04:00:00Z | 2002 | 4 | 2002-04-11T04:00:00Z | 2002-04-12T03:59:59Z | 2016-08-10T20:50:56Z | 0 | 0 | 09000064801fe7ca | |
| OSHA-NRTL1-88-2006-0602-0052 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | Supporting Exhibit 29-1; MEMORANDUM FOR MIKE TURNER, INFORMING THAT MET LABORATORIES INC (MET) HAS APPLIED FOR EXPANSIONS OF RECOGNITION IN A LETTER DATED FEBRUARY 13, 2002. | Supporting & Related Material | References/Supporting Documents | 2002-02-28T05:00:00Z | 2002 | 2 | 2016-05-20T23:05:14Z | 0 | 0 | 09000064801fe7ce | |||
| OSHA-NRTL1-88-2006-0602-0050 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | Supporting Exhibit 28-1; LETTER TO THE DIRECTOR, NRTL PROGRAM, REGARDING MET LABORATORIES INCS REQUESTS FOR EXPANSION OF THEIR SCOPE AS A NRTL. | Supporting & Related Material | References/Supporting Documents | 2002-02-13T05:00:00Z | 2002 | 2 | 2016-05-20T23:05:14Z | 0 | 0 | 09000064801fe7cc | |||
| OSHA-NRTL1-88-2006-0602-0051 | OSHA | MET ELECTRICAL TESTING COMPANY INC OSHA-NRTL1-88-2006-0602 | Supporting Exhibit 29; MEMORADUM FOR JENNIFER SILK, SUBJECT: MET LABORATORIES INC, APPLICATION FOR RENEWAL OF THEIR RECOGNITION AS A NATIONALLY RECOGNIZED TESTING LABORATORY UNDER THE OSHA NRTL PROGRAM. | Supporting & Related Material | References/Supporting Documents | 2002-01-31T05:00:00Z | 2002 | 1 | 2016-05-20T23:05:14Z | 0 | 0 | 09000064801fe7cd |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;