documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OSHA-2023-0013" 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 9
| 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-2023-0013-0009 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland—Evergreen Inc.: Grant of Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2026-02-03T05:00:00Z | 2026 | 2 | 2026-02-03T05:00:00Z | 2026-02-04T21:47:41Z | 2026-02154 | 0 | 0 | 09000064b918dc17 | |
| OSHA-2023-0013-0008 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland—Evergreen Inc.: Applications for Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T05:00:00Z | 2025-12-04T04:59:59Z | 2025-11-18T18:56:09Z | 2025-20026 | 0 | 0 | 09000064b9087dd1 |
| OSHA-2023-0013-0006 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland - Evergreen Inc. Amendment Application (February 2025) | Supporting & Related Material | Form | 2025-08-20T04:00:00Z | 2025 | 8 | 2025-08-20T22:45:01Z | 0 | 0 | 09000064b8f0903c | |||
| OSHA-2023-0013-0007 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland - Evergreen Inc. Second Amendment Application (March 2025) | Supporting & Related Material | Form | 2025-08-20T04:00:00Z | 2025 | 8 | 2025-08-20T22:46:22Z | 0 | 0 | 09000064b8f0903d | |||
| OSHA-2023-0013-0005 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland - Evergreen Inc. Expansion Application (November 2024) | Supporting & Related Material | Form | 2025-08-20T04:00:00Z | 2025 | 8 | 2025-08-20T22:43:45Z | 0 | 0 | 09000064b8f0903b | |||
| OSHA-2023-0013-0004 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland--Evergreen Inc.: Grant of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2023-09-13T04:00:00Z | 2023 | 9 | 2023-09-13T04:00:00Z | 2023-09-13T12:24:57Z | 2023-19712 | 0 | 0 | 0900006485f949a9 | |
| OSHA-2023-0013-0002 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland - Evergreen Inc. Application for Recognition (June 2020) | Supporting & Related Material | Form | 2023-07-25T04:00:00Z | 2023 | 7 | 2025-08-20T22:42:19Z | 0 | 0 | 0900006485c9f54d | |||
| OSHA-2023-0013-0003 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland - Evergreen Inc.- Revised Application for Recognition (June 2022) | Supporting & Related Material | Form | 2023-07-25T04:00:00Z | 2023 | 7 | 2025-08-20T22:42:37Z | 0 | 0 | 0900006485c9f54e | |||
| OSHA-2023-0013-0001 | OSHA | Element Materials Technology - NRTL Recognition OSHA-2023-0013 | Element Materials Technology Portland—Evergreen Inc.: Application for Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2023-07-25T04:00:00Z | 2023 | 7 | 2023-07-25T04:00:00Z | 2023-08-25T03:59:59Z | 2023-07-25T12:12:51Z | 2023-15669 | 0 | 0 | 0900006485d36c2b |
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;