documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CDC-2016-0020" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC-2016-0020-0009 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | Issuance of Final Publication: National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers' Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program | Notice | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T04:00:00Z | 2016-07-06T17:48:32Z | 2016-15978 | 0 | 0 | 090000648208d698 | ||
| CDC-2016-0020-0008 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | Quality Assurance Review of B Readers' Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program | Supporting & Related Material | 2016-06-29T04:00:00Z | 2016 | 6 | 2016-06-29T11:53:45Z | 0 | 0 | 0900006482075c71 | ||||
| CDC-2016-0020-0007 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | NIOSH responses to public comments | Supporting & Related Material | 2016-06-28T04:00:00Z | 2016 | 6 | 2016-06-28T11:24:04Z | 0 | 0 | 0900006482073c0f | ||||
| CDC-2016-0020-0002 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | Draft - NIOSH Quality Assurance Review of a B Readers' Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program | Supporting & Related Material | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T12:56:51Z | 0 | 0 | 0900006481e584dd | ||||
| CDC-2016-0020-0003 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | Memorandum of Understanding between DOL's Office of Workers' Compensation Programs (OWCP) and NIOSH establishing a B Reader Quality Assurance Program, dated 9-24-15 | Supporting & Related Material | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T12:57:22Z | 0 | 0 | 0900006481e584de | ||||
| CDC-2016-0020-0001 | CDC | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers’ Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program CDC-2016-0020 | National Institute for Occupational Safety and Health (NIOSH) Quality Assurance Review of B Readers' Classifications Submitted in the Department of Labor (DOL) Black Lung Benefits Program | Notice | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T05:00:00Z | 2016-04-19T03:59:59Z | 2016-04-17T17:00:08Z | 0 | 0 | 0900006481e7122d |
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;