documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2007-0017" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- OSHA 6
| 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-0017-0016 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Nomination of Charles R. Lemon by State of Washington | Other | 2008-07-17T00:00:00Z | 2008 | 7 | 2013-07-27T22:18:24Z | 0 | 1 | 0900006480669345 | ||||
| OSHA-2007-0017-0005 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations | Notice | Advisory Committees/Conferences | 2007-12-28T05:00:00Z | 2007 | 12 | 2007-12-28T05:00:00Z | 2008-02-12T04:59:59Z | 2008-01-08T12:42:30Z | E7-25144 | 0 | 0 | 090000648037f843 |
| OSHA-2007-0017-0004 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Maritime Advisory Committee for Occupational Safety and Health, Meeting Minutes, Washington, DC, 11/28/2007 | Supporting & Related Material | Meeting Minutes | 2007-12-18T05:00:00Z | 2007 | 12 | 2007-12-18T15:22:16Z | 0 | 0 | 090000648037bcf4 | |||
| OSHA-2007-0017-0003 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Maritime Advisory Committee for Occupational Safety and Health; Notice of Meeting | Notice | Meeting | 2007-11-07T05:00:00Z | 2007 | 11 | 2007-11-07T05:00:00Z | 2007-11-21T04:59:59Z | 2007-11-07T14:27:55Z | E7-21845 | 0 | 0 | 0900006480361002 |
| OSHA-2007-0017-0002 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Martime Advisory Committee for Occupational Safety and Health (MACOSH 2007) | Supporting & Related Material | Meeting Minutes | 2007-09-10T04:00:00Z | 2007 | 9 | 2007-09-10T20:14:27Z | 0 | 0 | 090000648028371e | |||
| OSHA-2007-0017-0001 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH); Request for Nominations OSHA-2007-0017 | Maritime Advisory Committee for Occupational Safety and Health; Notice of Meeting | Notice | Advisory Committees/Conferences | 2007-07-13T04:00:00Z | 2007 | 7 | 2007-07-13T04:00:00Z | 2007-07-21T03:59:59Z | 2007-07-13T15:59:21Z | E7-13617 | 0 | 0 | 0900006480267d64 |
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;