documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-S016-2006-0646" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- OSHA 7
| 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-S016-2006-0646-0126 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Electrical Safety-Related Work Practices; Electric Power Generation, Transmission, and Distribution; Electrical Protective Equipment; Corrections | Rule | Correction | 2015-10-05T04:00:00Z | 2015 | 10 | 2015-10-05T04:00:00Z | 2015-12-07T20:43:18Z | 2015-25062 | 0 | 0 | 0900006481cb0215 | |
| OSHA-S016-2006-0646-0078 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 21; | Supporting & Related Material | Corrections to Transcripts | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:14Z | 0 | 0 | 090000648020059a | |||
| OSHA-S016-2006-0646-0108 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 25-W; NONE, BETHLEHEM STEEL | Supporting & Related Material | OSHA | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:16Z | 0 | 0 | 09000064802005b9 | |||
| OSHA-S016-2006-0646-0076 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 19; | Supporting & Related Material | Association/Interest Group/Individual | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:14Z | 0 | 0 | 0900006480200598 | |||
| OSHA-S016-2006-0646-0001 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 0; STG INC, STG INC | Supporting & Related Material | Certification | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:12Z | 0 | 0 | 090000648020054d | |||
| OSHA-S016-2006-0646-0070 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 14; STEWART JAY A, JAY A STEWART | Supporting & Related Material | OSHA | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:13Z | 0 | 0 | 0900006480200592 | |||
| OSHA-S016-2006-0646-0060 | OSHA | ELECTRICAL SAFETY WORK PRACTICES OSHA-S016-2006-0646 | Supporting Exhibit 8; NONE, OSHA | Supporting & Related Material | References/Supporting Documents | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-01-08T21:49:13Z | 0 | 0 | 0900006480200588 |
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;