documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OSHA-2006-0028" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2006-0028-0060 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Labs Renewal Application | Supporting & Related Material | Form | 2019-12-18T05:00:00Z | 2019 | 12 | 2019-12-18T20:22:36Z | 0 | 0 | 0900006484214621 | |||
| OSHA-2006-0028-0059 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc.: Grant of Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2019-10-01T13:23:44Z | 2019-21233 | 0 | 0 | 0900006483ff21a7 | |
| OSHA-2006-0028-0058 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | Grant of Expansion of Recognition and Modification to the Nationally Recognized Testing Laboratory Program's List of Appropriate Test Standards: MET Laboratories, Inc. | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-17T12:49:51Z | 2019-20019 | 0 | 0 | 0900006483f8640e | |
| OSHA-2006-0028-0057 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc.: Application for Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-06-05T04:00:00Z | 2019 | 6 | 2019-06-05T04:00:00Z | 2019-06-21T03:59:59Z | 2019-06-05T13:11:03Z | 2019-11729 | 0 | 0 | 0900006483cebd50 |
| OSHA-2006-0028-0056 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | CSA Group Testing & Certification, Inc.: Grant of Expansion of Recognition and Modification to the NRTL Program’s List of Appropriate Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-04-22T04:00:00Z | 2019 | 4 | 2019-04-22T04:00:00Z | 2019-04-22T12:16:08Z | 2019-07997 | 0 | 0 | 0900006483bdac0b | |
| OSHA-2006-0028-0054 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | UL 696 MET Laboratories OSHA NRTL Scope Expansion Request (5.18.2018) | Supporting & Related Material | Letter | 2019-04-18T04:00:00Z | 2019 | 4 | 2019-04-18T13:00:57Z | 0 | 0 | 0900006483bb9d6b | |||
| OSHA-2006-0028-0055 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories OSHA NRTL Scope Expansion Request - UL 60079-7 (6.28.2018) | Supporting & Related Material | Letter | 2019-04-18T04:00:00Z | 2019 | 4 | 2019-04-18T13:02:32Z | 0 | 0 | 0900006483bb9d6c | |||
| OSHA-2006-0028-0052 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc.: Application for Expansion of Recognition and Proposed Modification to the NRTL Program’s List of Appropriate Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-03-12T04:00:00Z | 2019 | 3 | 2019-03-12T04:00:00Z | 2019-03-28T03:59:59Z | 2019-03-29T01:03:08Z | 2019-04435 | 0 | 0 | 0900006483ad6dad |
| OSHA-2006-0028-0051 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc.: Grant of Expansion of Recognition and Modification to the NRTL Program’s List of Appropriate Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T05:00:00Z | 2019-02-14T13:34:19Z | 2019-02239 | 0 | 0 | 0900006483a74ab0 |
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;