documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-NRTL4-93-2006-0623" and posted_year = 1999 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-NRTL4-93-2006-0623-0040 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | 21: UNDERWRITERS LABORATORIES INC EXPANSION OF RECOGNITION.NOTICE | Notice | Federal Register Notices | 1999-12-07T05:00:00Z | 1999 | 12 | 1999-12-07T05:00:00Z | 1999-12-08T04:59:59Z | 2016-08-10T21:03:34Z | 0 | 0 | 09000064801feb1f | |
| OSHA-NRTL4-93-2006-0623-0042 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | Supporting Exhibit 23; LETTER TO MIKE TURNER, ACTING DIRECTOR, OSHA REGARDING A REQUEST FOR RENEWAL OF UNDERWRITERS LABORATORIES INC RECOGNITION AS AN OSHA NATIONALLY RECOGNIZED TESTING LABORATORY | Supporting & Related Material | References/Supporting Documents | 1999-09-17T04:00:00Z | 1999 | 9 | 2016-05-20T23:05:54Z | 0 | 0 | 09000064801feb21 | |||
| OSHA-NRTL4-93-2006-0623-0032 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | 18: UNDERWRITERS LABORATORIES INC APPLICATION FOR EXPANSION OF RECOGNITION | Notice | Federal Register Notices | 1999-08-13T04:00:00Z | 1999 | 8 | 1999-08-13T04:00:00Z | 1999-08-14T03:59:59Z | 2016-08-10T21:03:34Z | 0 | 0 | 09000064801feb17 | |
| OSHA-NRTL4-93-2006-0623-0031 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | 17: UNDERWRITERS LABORATORIES INC EXPANSION OF RECOGNITION. NOTICE | Notice | Federal Register Notices | 1999-06-24T04:00:00Z | 1999 | 6 | 1999-06-24T04:00:00Z | 1999-06-25T03:59:59Z | 2016-08-10T21:03:34Z | 0 | 0 | 09000064801feb16 | |
| OSHA-NRTL4-93-2006-0623-0001 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | Supporting Exhibit 0; CERTIFICATE OF AUTHENTICITY AND DECLARATION OF INTENT AND PURPOSE | Supporting & Related Material | Certification | 1999-05-10T04:00:00Z | 1999 | 5 | 2016-10-08T11:46:27Z | 0 | 0 | 09000064801feaf8 | |||
| OSHA-NRTL4-93-2006-0623-0039 | OSHA | UNDERWRITERS LABORATORIES INC OSHA-NRTL4-93-2006-0623 | Supporting Exhibit 20; MEMORANDUM FOR MIKE TURNER, REGARDING ON-SITE REVIEW REPORT OF UNDERWRITERS LABORATORIES INC ORGANIZATIONS LOCATED IN COPENHAGEN, DENMARK (DEMKO), GUILDFORD, UNITED KINGDOM (ULIUK), AND MILAN, ITALY (ULI ITALIA) | Supporting & Related Material | References/Supporting Documents | 1999-04-20T04:00:00Z | 1999 | 4 | 2016-05-20T23:05:54Z | 0 | 0 | 09000064801feb1e |
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;