documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2008-0010" 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-2008-0010-0005 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Meeting OSHA-2008-0010 | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Membership | Notice | Advisory Committees/Conferences | 2008-12-18T05:00:00Z | 2008 | 12 | 2008-12-18T05:00:00Z | 2008-12-21T04:40:41Z | E8-30065 | 0 | 0 | 09000064807e05d5 | |
| OSHA-2008-0010-0004 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Meeting OSHA-2008-0010 | Charter Renewal for the Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Advisory Committees/Conferences | 2008-09-22T04:00:00Z | 2008 | 9 | 2008-09-22T04:00:00Z | 2008-09-22T23:11:45Z | E8-21983 | 0 | 0 | 0900006480716675 | |
| OSHA-2008-0010-0003 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Meeting OSHA-2008-0010 | Maritime Advisory Committee for Occupational Safety and Health; Notice of Meeting | Notice | Notice of Proposed Rulemaking | 2008-04-25T04:00:00Z | 2008 | 4 | 2008-04-25T04:00:00Z | 2008-04-25T18:31:33Z | E8-09045 | 0 | 0 | 0900006480533c37 | |
| OSHA-2008-0010-0002 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Meeting OSHA-2008-0010 | Maritime Advisory Committee for Occupational Safety and Health; Notice of Meeting Postponement | Notice | Advisory Committees/Conferences | 2008-03-12T04:00:00Z | 2008 | 3 | 2008-03-12T04:00:00Z | 2008-03-12T14:16:42Z | E8-04881 | 0 | 0 | 09000064803f25af | |
| OSHA-2008-0010-0001 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Notice of Meeting OSHA-2008-0010 | Maritime Advisory Committee for Occupational Safety and Health; Notice of Meeting | Notice | Advisory Committees/Conferences | 2008-02-14T05:00:00Z | 2008 | 2 | 2008-02-14T05:00:00Z | 2008-03-04T04:59:59Z | 2008-02-14T17:19:00Z | E8-02673 | 0 | 0 | 09000064803aea00 |
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;