documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2010-0007" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2010-0007-0015 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Nationally Recognized Testing Laboratories; Extension of the Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | Request for Comments | 2024-08-01T04:00:00Z | 2024 | 8 | 2024-08-01T04:00:00Z | 2024-10-01T03:59:59Z | 2024-08-01T12:29:53Z | 2024-16916 | 0 | 0 | 09000064866114d6 |
| OSHA-2010-0007-0013 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Nationally Recognized Testing Laboratory Program Regulation; Extension of the Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | Request for Comments | 2021-05-28T04:00:00Z | 2021 | 5 | 2021-05-28T04:00:00Z | 2021-07-28T03:59:59Z | 2021-05-28T14:27:59Z | 2021-11369 | 0 | 0 | 0900006484b404e7 |
| OSHA-2010-0007-0012 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Agency Information Collection Activities of the Office of Management and Budget (OMB) Control Numbers Under the Paperwork Reduction Act | Notice | Information Collection Request (ICR) | 2017-06-12T04:00:00Z | 2017 | 6 | 2017-06-12T04:00:00Z | 2017-06-12T14:15:23Z | 2017-12095 | 0 | 0 | 09000064826c5b9d | |
| OSHA-2010-0007-0007 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Nationally Recongized Testing Laboratory Program Regulation; Revision of the Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | Request for Comments | 2016-12-28T05:00:00Z | 2016 | 12 | 2016-12-28T05:00:00Z | 2017-02-28T04:59:59Z | 2017-02-26T02:00:22Z | 2016-31351 | 0 | 0 | 090000648243a091 |
| OSHA-2010-0007-0006 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Agency Information Collection Activities: Announcement of the Office of Management and Budget (OMB) Control Numbers Under the Paperwork Reduction Act | Notice | Information Collection Request (ICR) | 2014-06-30T04:00:00Z | 2014 | 6 | 2014-06-30T04:00:00Z | 2014-06-30T15:28:14Z | 2014-15236 | 0 | 0 | 0900006481774c1a | |
| OSHA-2010-0007-0003 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Definition and Requirements of a Nationally Recognized Testing Laboratory | Notice | Request for Comments | 2013-10-02T04:00:00Z | 2013 | 10 | 2013-10-02T04:00:00Z | 2013-12-03T04:59:59Z | 2013-11-20T18:15:19Z | 2013-23946 | 0 | 0 | 09000064814438ac |
| OSHA-2010-0007-0001 | OSHA | Definition and Requirements for Nationally Recognized Testing Laboratory (29 CFR 1910.7) OSHA-2010-0007 | Definition and Requirements for a Nationally Recognized Testing Laboratory (NRTL); Extension of the Office of Management and Budgets (OMB) Approval of Information Collection (Paperwork) Requirements. Request for comment. | Notice | Information Collection Request (ICR) | 2010-03-04T05:00:00Z | 2010 | 3 | 2010-03-04T05:00:00Z | 2010-05-04T03:59:59Z | 2013-11-20T18:15:18Z | 42 | 0 | 0 | 0900006480ab46bc |
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;