documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "OSHA" and docket_id = "OSHA-2012-0008" 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)
document_type 2
agency_id 1
- OSHA · 6 ✖
| 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-2012-0008-0004 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | Exhibit 2: Newport News Shipbuilding's (NNS) Amended Variance Application, September 6, 2011 | Supporting & Related Material | Variance | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T16:13:23Z | 0 | 0 | 0900006481295de6 | |||
| OSHA-2012-0008-0003 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | Exhibit 1: Northrop Grumman Shipbuilding's (NGSB) Original Variance Application dated October 26, 2009 | Supporting & Related Material | Variance | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T16:02:07Z | 0 | 0 | 0900006481294864 | |||
| OSHA-2012-0008-0005 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | National Aeronautics and Space Administration (NASA) Alternate Standard for Suspended Load Operations: Standard for Lifting Devices and Equipment | Supporting & Related Material | Variance | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T16:17:21Z | 0 | 0 | 0900006481915f1d | |||
| OSHA-2012-0008-0006 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | Newport News Shipbuilding (NNS) Amended Application for Permanent Variance from 29 CFR 1915.116(i), (j), & (q) | Supporting & Related Material | Agency References | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T16:52:30Z | 0 | 0 | 0900006481813732 | |||
| OSHA-2012-0008-0002 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | Newport News Shipbuilding; Grant of a Permanent Variance | Notice | Notice of Variance | 2016-08-04T04:00:00Z | 2016 | 8 | 2016-08-04T04:00:00Z | 2016-08-07T23:55:58Z | 2016-18404 | 0 | 0 | 0900006482155003 | |
| OSHA-2012-0008-0001 | OSHA | Newport News Shipbuilding (NNS) Company; Notice of Application for a Permanent Variance and Request for Comments OSHA-2012-0008 | Newport News Shipbuilding; Notice of Application for a Permanent Variance and Request for Comments | Notice | Notice of Variance | 2015-07-29T04:00:00Z | 2015 | 7 | 2015-07-29T04:00:00Z | 2015-08-29T03:59:59Z | 2015-07-29T14:38:57Z | 2015-18468 | 0 | 0 | 0900006481bad7bb |
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;