documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2013-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-2013-0007-0041 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Renewal of Charter | 2015-04-29T04:00:00Z | 2015 | 4 | 2015-04-29T04:00:00Z | 2015-04-29T14:21:29Z | 2015-09893 | 0 | 0 | 0900006481ac2674 | |
| OSHA-2013-0007-0029 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Exhibit 0026: Meetings: Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Meeting | 2015-01-30T05:00:00Z | 2015 | 1 | 2015-01-30T05:00:00Z | 2015-02-02T04:59:59Z | 2015-02-19T19:03:10Z | 2015-01796 | 0 | 0 | 09000064819e8ccc |
| OSHA-2013-0007-0010 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Exhibit 0013: Meetings: Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Meeting | 2014-07-22T04:00:00Z | 2014 | 7 | 2014-07-22T04:00:00Z | 2014-08-02T03:59:59Z | 2014-09-04T13:36:35Z | 2014-17178 | 0 | 0 | 09000064817d31d6 |
| OSHA-2013-0007-0003 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Exhibit 0003: Meetings: Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Meeting | 2014-03-28T04:00:00Z | 2014 | 3 | 2014-03-28T04:00:00Z | 2014-04-02T03:59:59Z | 2014-09-05T12:44:05Z | 2014-06936 | 0 | 0 | 090000648168a4d9 |
| OSHA-2013-0007-0002 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Exhibit 0002: Committee Membership: Maritime Advisory Committee for Occupational Safety and Health (MACOSH) | Notice | Notice of Membership | 2014-02-04T05:00:00Z | 2014 | 2 | 2014-02-04T05:00:00Z | 2014-09-04T13:38:16Z | 2014-02262 | 0 | 0 | 0900006481545b64 | |
| OSHA-2013-0007-0001 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH) OSHA-2013-0007 | Exhibit 0001: Maritime Advisory Committee for Occupational Safety and Health - Notice of reestablishment of the MACOSH charter | Notice | Advisory Committee | 2013-04-12T04:00:00Z | 2013 | 4 | 2013-04-12T04:00:00Z | 2014-09-04T13:37:39Z | 2013-08654 | 0 | 0 | 090000648129189a |
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;