documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2015-0012" 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-2015-0012-0010 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-11-23T00:00:00Z | 2015 | 11 | 2025-05-21T07:21:42Z | 2015-29774 | 0 | 0 | 0900006481d694fb | |||
| NRC-2015-0012-0009 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-10-21T00:00:00Z | 2015 | 10 | 2025-05-21T07:21:59Z | 2015-26739 | 0 | 0 | 0900006481cdcb3c | |||
| NRC-2015-0012-0008 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-10-02T00:00:00Z | 2015 | 10 | 2025-05-21T07:22:15Z | 2015-25146 | 0 | 0 | 0900006481caa3f9 | |||
| NRC-2015-0012-0007 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-08-26T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:31Z | 2015-21167 | 0 | 0 | 0900006481c3a8b1 | |||
| NRC-2015-0012-0006 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-07-01T00:00:00Z | 2015 | 7 | 2015-07-01T00:00:00Z | 2025-05-21T07:25:09Z | 2015-16236 | 0 | 0 | 0900006481b630da | ||
| NRC-2015-0012-0005 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-05-22T00:00:00Z | 2015 | 5 | 2025-05-21T07:29:29Z | 2015-12504 | 0 | 0 | 0900006481af11d1 | |||
| NRC-2015-0012-0004 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-04-28T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:41Z | 2015-09862 | 0 | 0 | 0900006481abf09a | |||
| NRC-2015-0012-0003 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-03-27T00:00:00Z | 2015 | 3 | 2025-05-21T07:29:49Z | 2015-07087 | 0 | 0 | 0900006481a6c265 | |||
| NRC-2015-0012-0002 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS); Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-03-03T00:00:00Z | 2015 | 3 | 2025-05-21T07:30:08Z | 2015-04392 | 0 | 0 | 0900006481a27670 | |||
| NRC-2015-0012-0001 | NRC | ACRS Subcommittee on Planning and Procedures (CY 2015) NRC-2015-0012 | Advisory Committee on Reactor Safeguards (ACRS) Meeting of the ACRS Subcommittee on Planning and Procedures; Notice of Meeting | Notice | 2015-01-22T00:00:00Z | 2015 | 1 | 2025-05-21T07:30:16Z | 2015-01027 | 0 | 0 | 09000064819d8184 |
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;