documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2006-0040" 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-0040-0031 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS 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:14:51Z | 2016-23547 | 0 | 0 | 090000648227f958 | |
| OSHA-2006-0040-0030 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS North America, Inc.: Applications for Expansion of Recognition | Notice | Notice of Variance | 2016-07-21T04:00:00Z | 2016 | 7 | 2016-07-21T04:00:00Z | 2016-08-06T03:59:59Z | 2016-07-21T13:21:50Z | 2016-17241 | 0 | 0 | 09000064820dba03 |
| OSHA-2006-0040-0029 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS Application Amendment - June 2016 | Supporting & Related Material | 2016-06-16T04:00:00Z | 2016 | 6 | 2016-06-16T16:25:22Z | 0 | 0 | 0900006482047052 | ||||
| OSHA-2006-0040-0027 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS Baseefa Application Amendment - January 2015 | Supporting & Related Material | 2016-06-13T04:00:00Z | 2016 | 6 | 2016-06-13T18:25:42Z | 0 | 0 | 0900006482034012 | ||||
| OSHA-2006-0040-0028 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS Expansion Application Form - Three Standards - Oct 2014 | Supporting & Related Material | Form | 2016-06-13T04:00:00Z | 2016 | 6 | 2016-06-13T19:19:42Z | 0 | 0 | 090000648203543c | |||
| OSHA-2006-0040-0025 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS North America Site Application - Sept 2014 | Supporting & Related Material | Form | 2016-03-23T04:00:00Z | 2016 | 3 | 2016-03-23T13:43:39Z | 0 | 0 | 0900006481ed80ee | |||
| OSHA-2006-0040-0026 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS North America Additional Site Application - Oct 2014 | Supporting & Related Material | Form | 2016-03-23T04:00:00Z | 2016 | 3 | 2016-03-23T13:44:30Z | 0 | 0 | 0900006481ed80ef | |||
| OSHA-2006-0040-0024 | OSHA | SGS U.S. Testing Company, Inc.; Applications for Renewal and Expansion of Recognition OSHA-2006-0040 | SGS North America, Inc.: Grant of 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-01-22T14:48:48Z | 2016-01285 | 0 | 0 | 0900006481e2870a |
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;