documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2018-0172" 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)
document_type 3
agency_id 1
- NRC 7
| 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-2018-0172-0007 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Elimination of Immediate Notification Requirements for Nonemergency Events | Proposed Rule | 2021-08-12T00:00:00Z | 2021 | 8 | 2021-08-12T00:00:00Z | 2025-05-21T06:39:53Z | 2021-17244 | 0 | 0 | 0900006484c48d53 | ||
| NRC-2018-0172-0006 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Categorization of the Licensee Fee Category for Full-Cost Recovery; Closure of Petition | Proposed Rule | 2020-06-04T00:00:00Z | 2020 | 6 | 2025-05-21T06:54:37Z | 2020-10831 | 0 | 0 | 09000064846c9ff0 | |||
| NRC-2018-0172-0005 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Revision of Fee Schedules; Fee Recovery for Fiscal Year 2019; correction | Rule | 2019-06-04T00:00:00Z | 2019 | 6 | 2025-05-21T07:06:03Z | C1-2019-10 | 0 | 0 | 0900006483ce6897 | |||
| NRC-2018-0172-0004 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Revision of Fee Schedules; Fee Recovery for Fiscal Year 2019 | Rule | 2019-05-21T00:00:00Z | 2019 | 5 | 2019-05-21T00:00:00Z | 2025-05-21T07:06:23Z | 2019-10051 | 0 | 0 | 0900006483cad083 | ||
| NRC-2018-0172-0003 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Revision of Fee Schedules: Fee Recovery for Fiscal Year 2019 | Proposed Rule | 2019-01-31T00:00:00Z | 2019 | 1 | 2019-01-31T00:00:00Z | 2019-03-05T04:59:59Z | 2025-05-21T07:07:04Z | 2019-00219 | 0 | 0 | 0900006483a2f800 | |
| NRC-2018-0172-0002 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Categorization of the Licensee Fee Category for Full-Cost Recovery; Notice of Docketing of PRM | Proposed Rule | 2018-11-02T00:00:00Z | 2018 | 11 | 2025-05-21T07:07:28Z | 2018-24002 | 0 | 0 | 0900006483882e0c | |||
| NRC-2018-0172-0001 | NRC | Categorization of the Licensee Fee Category for Full-Cost Recovery NRC-2018-0172 | Incoming Petition for Rulemaking | Supporting & Related Material | 2018-08-13T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:40Z | 0 | 0 | 0900006483618b82 |
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;