documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2015-0015" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_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-2015-0015-0048 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | Census Bureau (2017). 2015 County Business Patterns. | Supporting & Related Material | Data | 2018-11-13T05:00:00Z | 2018 | 11 | 2018-11-13T20:12:11Z | 0 | 0 | 09000064838bf400 | |||
| OSHA-2015-0015-0047 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | TSI. Letter submitted to OSHA. Response to public comments (Gregory M. Olson, Jr) - May 10, 2017. | Supporting & Related Material | Comment Response | 2018-10-19T04:00:00Z | 2018 | 10 | 2018-11-14T19:21:45Z | 0 | 0 | 0900006483806e10 | |||
| OSHA-2015-0015-0043 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | [BLS] Bureau of Labor Statistics. (March 31, 2017). News Release: Occupational Employment and Wages - May 2016. USDL-17-0376. | Supporting & Related Material | News Releases | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-11-14T19:20:35Z | 0 | 0 | 090000648379de94 | |||
| OSHA-2015-0015-0044 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | [BLS] Bureau of Labor Statistics. (March 17, 2017). News Release: Employer Costs for Employee Compensation - December 2016. USDL-17-0321 | Supporting & Related Material | News Releases | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-11-14T19:20:57Z | 0 | 0 | 090000648379dffa | |||
| OSHA-2015-0015-0045 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | [NIOSH] National Institute for Occupational Safety and Health. (September 2003). Respirator Usage in Private Sector Firms, 2001. Bureau of Labor Statistics, National Institute for Occupational Safety and Health. | Supporting & Related Material | Publication - Other Governmental | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-11-14T19:21:15Z | 0 | 0 | 090000648379e02a | |||
| OSHA-2015-0015-0046 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | [OSHA] Occupational Safety and Health Administration. Teleconference between OSHA, SOL, and TSI Incorporated Personnel - April 20, 2018 | Supporting & Related Material | Meeting Summary | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-11-14T19:21:32Z | 0 | 0 | 090000648379e065 |
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;