documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NRC-2014-0184" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRC-2014-0184-0005 | NRC | Proposed Revision to Chilled Water, Section 9.2.7 of NUREG-0800 NRC-2014-0184 | Chilled Water System; Issuance of Standard Review Plan Section | Notice | 2015-09-25T00:00:00Z | 2015 | 9 | 2025-05-21T07:22:16Z | 2015-24306 | 0 | 0 | 0900006481c95ec0 | |||
| NRC-2014-0184-0003 | NRC | Proposed Revision to Chilled Water, Section 9.2.7 of NUREG-0800 NRC-2014-0184 | Proposed Revision to Chilled Water; Correction | Notice | 2014-08-20T00:00:00Z | 2014 | 8 | 2025-05-21T07:31:09Z | 2014-19752 | 0 | 0 | 0900006481833d65 | |||
| NRC-2014-0184-0002 | NRC | Proposed Revision to Chilled Water, Section 9.2.7 of NUREG-0800 NRC-2014-0184 | NUREG-0800 Standard Review Plan - Section 9.2.7, Chilled Water | Other | 2014-08-11T00:00:00Z | 2014 | 8 | 2014-08-11T00:00:00Z | 2025-05-21T07:31:10Z | 0 | 0 | 0900006481818f77 | |||
| NRC-2014-0184-0001 | NRC | Proposed Revision to Chilled Water, Section 9.2.7 of NUREG-0800 NRC-2014-0184 | Proposed Revision to Chilled Water; Request for Comment on Draft Standard Review Plan | Notice | 2014-08-05T00:00:00Z | 2014 | 8 | 2014-08-05T00:00:00Z | 2014-10-07T03:59:59Z | 2025-05-21T07:31:11Z | 2014-18514 | 0 | 0 | 0900006481802b5a |
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;