documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CDC" and docket_id = "CDC-2012-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, 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-2012-0012-0001 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | Request for Information on Edel-Kindwell Caisson Tables for Preventing Decompression Illness in Construction Workers | Notice | Request for Comments | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2013-03-30T03:59:59Z | 2013-04-03T02:01:24Z | 0 | 0 | 090000648118b8bb | |
| CDC-2012-0012-0006 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | G-3C Air Saturation Interim Decompression Table | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:41Z | 0 | 0 | 0900006481154a70 | ||||
| CDC-2012-0012-0007 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | Compressed Air Work - French Tables 1992 Operational Results | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:41Z | 0 | 0 | 0900006481154a71 | ||||
| CDC-2012-0012-0002 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | Criteria for Interim Decompression Tables for Caisson and Tunnel Workers | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:39Z | 0 | 0 | 0900006481152d3a | ||||
| CDC-2012-0012-0005 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | G-3B1 Oxygen Interim Decompression Tables | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:40Z | 0 | 0 | 0900006481154a6e | ||||
| CDC-2012-0012-0008 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | A Guide to the Work in Compressed Air Regulations - 1996 | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:42Z | 0 | 0 | 0900006481154a72 | ||||
| CDC-2012-0012-0003 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | G-3A Air Interim Decompression Tables | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:39Z | 0 | 0 | 0900006481152d3b | ||||
| CDC-2012-0012-0004 | CDC | Request for Information on Edel-Kindwall Caisson Tables for Preventing Decompression Illness in Construction Workers CDC-2012-0012 | G-3A1 Air Interim Decompression back-up Tables for G-3A | Supporting & Related Material | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T19:53:40Z | 0 | 0 | 0900006481154a6d |
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;