documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2007-0043" and posted_year = 2022 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)
| 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-2007-0043-0044 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUV SUD America, Inc.: Grant of Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2022-06-29T04:00:00Z | 2022 | 6 | 2022-06-29T04:00:00Z | 2022-06-29T12:53:06Z | 2022-13896 | 0 | 0 | 09000064851a904c | |
| OSHA-2007-0043-0043 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUV SUD America, Inc.: Application for Expansion of Recognition | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2022-05-27T04:00:00Z | 2022 | 5 | 2022-05-27T04:00:00Z | 2022-06-14T03:59:59Z | 2022-05-27T13:06:28Z | 2022-11419 | 0 | 0 | 09000064850fd776 |
| OSHA-2007-0043-0042 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUVAM 5 Standard Expansion (July 2021) | Supporting & Related Material | Form | 2022-04-19T04:00:00Z | 2022 | 4 | 2022-04-19T17:24:02Z | 0 | 0 | 09000064850243ba | |||
| OSHA-2007-0043-0041 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUVAM 3 Standard Amended Application ( July 2021) - Revised February 2022 | Supporting & Related Material | Form | 2022-04-19T04:00:00Z | 2022 | 4 | 2022-04-19T17:23:01Z | 0 | 0 | 09000064850243b9 | |||
| OSHA-2007-0043-0040 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUV SUD America, Inc.: Grant of Expansion of Recognition and Modification to the NRTL Program’s List of Appropriate Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2022-03-28T04:00:00Z | 2022 | 3 | 2022-03-28T04:00:00Z | 2022-03-28T12:33:44Z | 2022-06411 | 0 | 0 | 0900006484fe7c3f | |
| OSHA-2007-0043-0039 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUV SUD America, Inc.: Application for Expansion of Recognition and Proposed Modification to the NRTL Program’s List of Appropriate Test Standards | Notice | Nationally Recognized Testing Laboratory (NRTL) | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-03-08T04:59:59Z | 2022-02-18T13:18:00Z | 2022-03536 | 0 | 0 | 0900006484f87992 |
| OSHA-2007-0043-0038 | OSHA | TUV America, Inc. (TUVAM) OSHA-2007-0043 | TUV SUD America 8 Standard Expansion Application | Supporting & Related Material | Form | 2022-02-07T05:00:00Z | 2022 | 2 | 2022-02-07T19:32:12Z | 0 | 0 | 0900006484f5a30e |
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;