documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2007-0073" and posted_year = 2014 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), 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-0073-0093 | OSHA | Emergency Response OSHA-2007-0073 | Making Ambulances Safer for Patients and EMTs | Supporting & Related Material | Publication - Copyrighted Materials | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T17:20:32Z | 0 | 0 | 09000064818a68f1 | |||
| OSHA-2007-0073-0092 | OSHA | Emergency Response OSHA-2007-0073 | Comments from Alfred Keiss regarding the July 30-31, 2014 Emergency Response and Preparedness Stakeholder Meeting. | Supporting & Related Material | Exhibits | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T17:14:28Z | 0 | 0 | 09000064818a68f0 | |||
| OSHA-2007-0073-0090 | OSHA | Emergency Response OSHA-2007-0073 | National Traffic Incident Management (TIM) Training Newsletter, July 2014 | Supporting & Related Material | Agency References | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T17:01:45Z | 0 | 0 | 09000064818a68f2 | |||
| OSHA-2007-0073-0091 | OSHA | Emergency Response OSHA-2007-0073 | National Traffic Incident Management (TIM) Training Implementation Good Practices | Supporting & Related Material | Agency References | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T17:05:24Z | 0 | 0 | 09000064818a68f3 | |||
| OSHA-2007-0073-0087 | OSHA | Emergency Response OSHA-2007-0073 | Meeting Summary Report from the Emergency Response and Preparedness Stakeholder Meeting held on July 30-31, 2014 | Supporting & Related Material | Meeting Exhibits | 2014-10-03T04:00:00Z | 2014 | 10 | 2015-06-18T16:51:56Z | 0 | 0 | 09000064818a0de5 | |||
| OSHA-2007-0073-0088 | OSHA | Emergency Response OSHA-2007-0073 | Blue Card Command SOPs 3rd Edition | Supporting & Related Material | Report | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T16:57:50Z | 0 | 0 | 09000064818a5395 | |||
| OSHA-2007-0073-0089 | OSHA | Emergency Response OSHA-2007-0073 | The National Highway Traffic Safety Administration and Ground Ambulance Crashes | Supporting & Related Material | Agency References | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T17:00:11Z | 0 | 0 | 09000064818a5396 | |||
| OSHA-2007-0073-0086 | OSHA | Emergency Response OSHA-2007-0073 | Emergency Response and Preparedness: Stakeholder Meeting | Proposed Rule | Public Meeting | 2014-06-04T04:00:00Z | 2014 | 6 | 2014-06-04T04:00:00Z | 2014-06-05T13:35:48Z | 2014-12928 | 0 | 0 | 0900006481728632 |
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;