documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-H117B-2006-0855" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- OSHA 5
| 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-H117B-2006-0855-0001 | OSHA | GRAIN HANDLING OSHA-H117B-2006-0855 | Supporting Exhibit 0; DECLARATION OF INTENT AND PURPOSE AND CERTIFICATE OF AUTHENTICITY | Supporting & Related Material | Certification | 1997-09-03T04:00:00Z | 1997 | 9 | 2016-10-08T01:37:44Z | 0 | 0 | 090000648021175b | |||
| OSHA-H117B-2006-0855-0022 | OSHA | GRAIN HANDLING OSHA-H117B-2006-0855 | 7: GRAIN HANDLING FACILITIES. FINAL RULE; TECHNICAL AMENDMENT | Notice | Federal Register Notices | 1996-03-08T05:00:00Z | 1996 | 3 | 1996-03-08T05:00:00Z | 1996-03-09T04:59:59Z | 2016-08-10T20:50:40Z | 0 | 0 | 0900006480211770 | |
| OSHA-H117B-2006-0855-0020 | OSHA | GRAIN HANDLING OSHA-H117B-2006-0855 | Supporting Exhibit 5; PERSONAL AND INDUSTRIAL SAFETY GENERAL CATALOG | Supporting & Related Material | References/Supporting Documents | 1995-12-31T05:00:00Z | 1995 | 12 | 2016-05-20T22:27:18Z | 0 | 0 | 090000648021176e | |||
| OSHA-H117B-2006-0855-0002 | OSHA | GRAIN HANDLING OSHA-H117B-2006-0855 | 3: GRAIN HANDLING FACILITIES. PROPOSED RULE; TECHNICAL AMENDMENT | Notice | Federal Register Notices (INCL ETS) | 1995-10-19T04:00:00Z | 1995 | 10 | 1995-10-19T04:00:00Z | 1995-10-20T03:59:59Z | 2016-08-10T20:50:40Z | 0 | 0 | 090000648021175c | |
| OSHA-H117B-2006-0855-0021 | OSHA | GRAIN HANDLING OSHA-H117B-2006-0855 | Supporting Exhibit 6; GAUGING CONTROL TECHNOLOGY AND REGULATORY IMPACTS IN OCCUPATIONAL SAFETY AND HEALTH. AN APPRAISAL OF OSHAS ANALYTIC APPROACH | Supporting & Related Material | References/Supporting Documents | 1995-08-31T04:00:00Z | 1995 | 8 | 2016-05-20T22:27:18Z | 0 | 0 | 090000648021176f |
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;