documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2006-0028" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-0050 | 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) | 2018-07-24T04:00:00Z | 2018 | 7 | 2018-07-24T04:00:00Z | 2018-08-09T03:59:59Z | 2018-07-30T01:03:09Z | 2018-15773 | 0 | 0 | 0900006483543eb5 |
| OSHA-2006-0028-0049 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | UL 1598C MET Laboratories OSHA NRTL Scope Expansion Request 1.29.2016 | Supporting & Related Material | Letter | 2018-07-10T04:00:00Z | 2018 | 7 | 2018-07-10T15:42:19Z | 0 | 0 | 09000064834cb0d4 | |||
| OSHA-2006-0028-0048 | 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) | 2018-05-15T04:00:00Z | 2018 | 5 | 2018-05-15T04:00:00Z | 2018-05-15T12:14:55Z | 2018-10330 | 0 | 0 | 09000064832687e6 | |
| OSHA-2006-0028-0047 | 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) | 2018-05-14T04:00:00Z | 2018 | 5 | 2018-05-14T04:00:00Z | 2018-05-14T12:48:28Z | 2018-10154 | 0 | 0 | 09000064832628ad | |
| OSHA-2006-0028-0046 | 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) | 2018-03-09T05:00:00Z | 2018 | 3 | 2018-03-09T05:00:00Z | 2018-03-09T13:38:23Z | 2018-04746 | 0 | 0 | 0900006482fce8d3 | |
| OSHA-2006-0028-0045 | 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) | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-21T05:00:00Z | 2018-03-09T04:59:59Z | 2018-03-09T02:02:49Z | 2018-03529 | 0 | 0 | 0900006482f4c9c8 |
| OSHA-2006-0028-0044 | 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) | 2018-02-09T05:00:00Z | 2018 | 2 | 2018-02-09T05:00:00Z | 2018-02-27T04:59:59Z | 2018-02-26T01:37:02Z | 2018-02563 | 0 | 0 | 0900006482f060eb |
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;