documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2006-0030" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_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-2006-0030-0005 | OSHA | National Technical Systems, Inc.; Application for Renewal of Recognition OSHA-2006-0030 | Expiration of Recognition as a Nationally Recognized Testing Laboratory: National Technical Systems, Inc. Action: Notice. | Notice | 2012-05-24T04:00:00Z | 2012 | 5 | 2012-05-24T04:00:00Z | 2012-05-24T14:12:07Z | 2012-12632 | 0 | 0 | 090000648101b47f | ||
| OSHA-2006-0030-0003 | OSHA | National Technical Systems, Inc.; Application for Renewal of Recognition OSHA-2006-0030 | Ex. 7. Letter from C. Briggs/NTS, dated February 13, 2003, requesting renewal of recognition and accompanying information | Supporting & Related Material | Supporting Documents | 2007-07-26T04:00:00Z | 2007 | 7 | 2007-07-26T20:34:26Z | 0 | 0 | 090000648026e702 | |||
| OSHA-2006-0030-0004 | OSHA | National Technical Systems, Inc.; Application for Renewal of Recognition OSHA-2006-0030 | Ex. 7-1. Onsite Review Report by K. Klouse/OSHA, dated July 22, 2005, containing recommendation for Renewal of Recognition | Supporting & Related Material | Supporting Documents/References | 2007-07-26T04:00:00Z | 2007 | 7 | 2007-07-26T20:34:27Z | 0 | 0 | 090000648026e712 | |||
| OSHA-2006-0030-0002 | OSHA | National Technical Systems, Inc.; Application for Renewal of Recognition OSHA-2006-0030 | NRTL1-98, Osha-2006-0030: National Technical Systems, Inc.; Renewal of Recognition | Notice | Federal Register Notices | 2007-06-21T04:00:00Z | 2007 | 6 | 2007-06-21T04:00:00Z | 2016-08-10T20:51:07Z | E7-12024 | 0 | 0 | 09000064802549f5 | |
| OSHA-2006-0030-0001 | OSHA | National Technical Systems, Inc.; Application for Renewal of Recognition OSHA-2006-0030 | National Technical Systems, Inc.; Application for Renewal of Recognition | Notice | 2006-08-17T04:00:00Z | 2006 | 8 | 2006-08-17T04:00:00Z | 2006-12-18T14:22:08Z | E6-13542 | 0 | 0 | 09000064801b90c8 |
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;