documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NRC-2014-0217" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0217-0011 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-11-24T00:00:00Z | 2015 | 11 | 2025-05-21T07:21:41Z | 2015-29880 | 0 | 0 | 0900006481d6d3f3 | |||
| NRC-2014-0217-0010 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-10-26T00:00:00Z | 2015 | 10 | 2025-05-21T07:21:56Z | 2015-27192 | 0 | 0 | 0900006481cecd10 | |||
| NRC-2014-0217-0009 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-10-02T00:00:00Z | 2015 | 10 | 2025-05-21T07:22:14Z | 2015-25116 | 0 | 0 | 0900006481caa444 | |||
| NRC-2014-0217-0008 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-08-26T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:31Z | 2015-21159 | 0 | 0 | 0900006481c3a77d | |||
| NRC-2014-0217-0007 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-07-01T00:00:00Z | 2015 | 7 | 2025-05-21T07:25:10Z | 2015-16235 | 0 | 0 | 0900006481b63002 | |||
| NRC-2014-0217-0006 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-05-22T00:00:00Z | 2015 | 5 | 2025-05-21T07:29:29Z | 2015-12501 | 0 | 0 | 0900006481af13c3 | |||
| NRC-2014-0217-0005 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-04-28T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:40Z | 2015-09867 | 0 | 0 | 0900006481abeffc | |||
| NRC-2014-0217-0004 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-03-19T00:00:00Z | 2015 | 3 | 2025-05-21T07:29:55Z | 2015-06333 | 0 | 0 | 0900006481a51910 | |||
| NRC-2014-0217-0003 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-03-02T00:00:00Z | 2015 | 3 | 2025-05-21T07:30:08Z | 2015-04295 | 0 | 0 | 0900006481a239e5 | |||
| NRC-2014-0217-0002 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2015-01-20T00:00:00Z | 2015 | 1 | 2025-05-21T07:30:17Z | 2015-00785 | 0 | 0 | 09000064819d2425 | |||
| NRC-2014-0217-0001 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2014-0217 | Advisory Committee on Reactor Safeguards; Procedures for Meetings | Notice | 2014-10-01T00:00:00Z | 2014 | 10 | 2014-10-01T00:00:00Z | 2025-05-21T07:30:50Z | 2014-23431 | 0 | 0 | 090000648189f7d0 |
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;