documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2012-0256" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-2012-0256-0011 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-11-22T00:00:00Z | 2013 | 11 | 2025-05-21T08:42:39Z | 2013-28057 | 0 | 0 | 0900006481490f20 | |||
| NRC-2012-0256-0010 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-10-30T00:00:00Z | 2013 | 10 | 2025-05-21T08:42:53Z | 2013-25794 | 0 | 0 | 09000064814670a2 | |||
| NRC-2012-0256-0009 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-09-25T00:00:00Z | 2013 | 9 | 2025-05-21T08:43:37Z | 2013-23322 | 0 | 0 | 09000064814392b9 | |||
| NRC-2012-0256-0008 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-08-29T00:00:00Z | 2013 | 8 | 2025-05-21T08:44:18Z | 2013-21090 | 0 | 0 | 09000064813cdaf6 | |||
| NRC-2012-0256-0007 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-06-24T00:00:00Z | 2013 | 6 | 2013-06-24T00:00:00Z | 2025-05-21T08:45:21Z | 2013-15042 | 0 | 0 | 090000648133b4c6 | ||
| NRC-2012-0256-0006 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-05-29T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:43Z | 2013-12744 | 0 | 0 | 09000064812fdd95 | |||
| NRC-2012-0256-0005 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Notice of Meeting; Advisory Committee on Reactor Safeguards | Notice | 2013-05-02T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:57Z | 2013-10431 | 0 | 0 | 09000064812b1c29 | |||
| NRC-2012-0256-0004 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-03-26T00:00:00Z | 2013 | 3 | 2025-05-21T08:46:06Z | 2013-06883 | 0 | 0 | 09000064812453ab | |||
| NRC-2012-0256-0003 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-02-25T00:00:00Z | 2013 | 2 | 2025-05-21T08:46:11Z | 2013-04237 | 0 | 0 | 0900006481206963 | |||
| NRC-2012-0256-0002 | NRC | Advisory Committee on Reactor Safeguards; Procedures for Meetings NRC-2012-0256 | Advisory Committee on Reactor Safeguards; Notice of Meeting | Notice | 2013-01-16T00:00:00Z | 2013 | 1 | 2025-05-21T08:46:32Z | 2013-00797 | 0 | 0 | 09000064811c0639 |
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;