documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2013-0016" and posted_year = 2016 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-2013-0016-0015 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko North America, Inc.: Grant of Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2016-09-29T04:00:00Z | 2016 | 9 | 2016-09-29T04:00:00Z | 2016-09-29T14:17:11Z | 2016-23548 | 0 | 0 | 090000648227f95b | |
| OSHA-2013-0016-0014 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko North America, Inc.: Application for Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2016-08-01T04:00:00Z | 2016 | 8 | 2016-08-01T04:00:00Z | 2016-08-17T03:59:59Z | 2016-08-01T13:02:27Z | 2016-18091 | 0 | 0 | 0900006482145708 |
| OSHA-2013-0016-0013 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko-CCL, Inc.: Grant of Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2016-07-27T04:00:00Z | 2016 | 7 | 2016-07-27T04:00:00Z | 2016-07-27T15:50:32Z | 2016-17793 | 0 | 0 | 0900006482129641 | |
| OSHA-2013-0016-0012 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko-CCL Expansion 62368 - June 2015 | Supporting & Related Material | Form | 2016-06-24T04:00:00Z | 2016 | 6 | 2016-06-24T13:28:48Z | 0 | 0 | 090000648206782a | |||
| OSHA-2013-0016-0011 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko-CCL Application Form - Canada HQ | Supporting & Related Material | Form | 2016-06-13T04:00:00Z | 2016 | 6 | 2016-06-13T15:30:32Z | 0 | 0 | 0900006482033e4b | |||
| OSHA-2013-0016-0010 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko-CCL Application Form - Canada HQ | Supporting & Related Material | Form | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T14:56:54Z | 0 | 0 | 0900006482029d8a | |||
| OSHA-2013-0016-0009 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Nemko-CCL, Inc.: Applications for Expansion of Recognition | Notice | Notice of Variance | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2016-06-02T03:59:59Z | 2016-05-17T12:56:58Z | 2016-11595 | 0 | 0 | 0900006481fd5b4c |
| OSHA-2013-0016-0008 | OSHA | Nemko North America, Inc. (NNA) OSHA-2013-0016 | Signed Form 5-30-5--NRTL Application and Expansion Form-GS for Communication Certification Laboratory dba Nemko-CCL, Inc. | Supporting & Related Material | Form | 2016-03-23T04:00:00Z | 2016 | 3 | 2016-03-23T13:00:47Z | 0 | 0 | 0900006481ed80f0 |
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;