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 = 2016 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-0030 | 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 | Request for Comments | 2016-11-15T05:00:00Z | 2016 | 11 | 2016-11-15T05:00:00Z | 2016-12-01T04:59:59Z | 2016-11-15T15:05:28Z | 2016-27356 | 0 | 0 | 090000648239635e |
| OSHA-2006-0028-0027 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories NRTL Scope Expansion Request - UL 60079-0 - July 7, 2015 | Supporting & Related Material | Application | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T18:04:05Z | 0 | 0 | 090000648220bfb0 | |||
| OSHA-2006-0028-0028 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories NRTL Scope Expansion Request - UL 60079-11 - July 7, 2015 | Supporting & Related Material | Application | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T18:04:55Z | 0 | 0 | 090000648220bfb1 | |||
| OSHA-2006-0028-0026 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories NRTL Scope Expansion Request - UL 60079-2 - July 7, 2015 | Supporting & Related Material | Application | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T16:20:12Z | 0 | 0 | 090000648220bfaf | |||
| OSHA-2006-0028-0029 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories NRTL Scope Expansion Request - UL 60079-15 - July 7, 2015 | Supporting & Related Material | Application | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T18:06:09Z | 0 | 0 | 090000648220bfb2 | |||
| OSHA-2006-0028-0024 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc. Standard Expansion - July 7, 2015 | Supporting & Related Material | Application | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T19:14:50Z | 0 | 0 | 090000648217a74e | |||
| OSHA-2006-0028-0025 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc. Standard Expansion - August 4, 2015 | Supporting & Related Material | Application | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T19:17:01Z | 0 | 0 | 090000648217a74f | |||
| OSHA-2006-0028-0023 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | Nationally Recognized Testing Laboratories: MET Laboratories, Inc. | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2016-04-04T04:00:00Z | 2016 | 4 | 2016-04-04T04:00:00Z | 2016-04-04T13:40:17Z | 2016-07482 | 0 | 0 | 0900006481f23c5c | |
| OSHA-2006-0028-0022 | OSHA | MET Laboratories, Inc., Application for Expansion of Recognition OSHA-2006-0028 | MET Laboratories, Inc.: Application for Expansion of Recognition and Modification to the List of Appropriate NRTL Program Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2016-01-22T05:00:00Z | 2016 | 1 | 2016-01-22T05:00:00Z | 2016-02-09T04:59:59Z | 2016-01-22T16:13:44Z | 2016-01289 | 0 | 0 | 0900006481e28873 |
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;