documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "NRC-2013-0253" 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-2013-0253-0012 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-11-25T00:00:00Z | 2014 | 11 | 2025-05-21T07:30:34Z | 2014-27959 | 0 | 0 | 0900006481944bd3 | |||
| NRC-2013-0253-0011 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-10-24T00:00:00Z | 2014 | 10 | 2025-05-21T07:30:44Z | 2014-25343 | 0 | 0 | 09000064818fb122 | |||
| NRC-2013-0253-0010 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Procedures for Meetings | Notice | 2014-10-01T00:00:00Z | 2014 | 10 | 2025-05-21T07:30:50Z | 0 | 1 | 090000648189f862 | ||||
| NRC-2013-0253-0009 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-09-29T00:00:00Z | 2014 | 9 | 2025-05-21T07:30:50Z | 2014-23123 | 0 | 0 | 0900006481898f84 | |||
| NRC-2013-0253-0008 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-08-19T00:00:00Z | 2014 | 8 | 2025-05-21T07:31:09Z | 2014-19660 | 0 | 0 | 090000648182f95e | |||
| NRC-2013-0253-0007 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-06-25T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:33Z | 2014-14866 | 0 | 0 | 09000064817655c4 | |||
| NRC-2013-0253-0006 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-06-02T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:38Z | 2014-12718 | 0 | 0 | 0900006481722ca7 | |||
| NRC-2013-0253-0005 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-05-01T00:00:00Z | 2014 | 5 | 2025-05-21T07:32:59Z | 2014-09991 | 0 | 0 | 09000064816da51e | |||
| NRC-2013-0253-0004 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-04-01T00:00:00Z | 2014 | 4 | 2025-05-21T07:33:06Z | 2014-07245 | 0 | 0 | 0900006481694af7 | |||
| NRC-2013-0253-0003 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-02-25T00:00:00Z | 2014 | 2 | 2025-05-21T08:37:18Z | 2014-04109 | 0 | 0 | 09000064815b1507 | |||
| NRC-2013-0253-0002 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2014-01-31T00:00:00Z | 2014 | 1 | 2025-05-21T08:41:54Z | 2014-02037 | 0 | 0 | 09000064815394b0 | |||
| NRC-2013-0253-0001 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2013-0253 | Advisory Committee on Reactor Safeguards; Procedures for Meetings | Notice | 2013-11-08T00:00:00Z | 2013 | 11 | 2025-05-21T08:42:44Z | 2013-26836 | 0 | 0 | 09000064814737de |
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;