documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2008-0198" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NRC 8
| 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-2008-0198-0016 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements; Corrections | Rule | 2015-08-14T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:37Z | 2015-20027 | 0 | 0 | 0900006481c20779 | |||
| NRC-2008-0198-0015 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Letter from the Office of the Federal Register Approving Incorporation by Reference Request | Supporting & Related Material | 2015-07-01T00:00:00Z | 2015 | 7 | 2025-05-21T07:25:10Z | 0 | 0 | 0900006481b659b2 | ||||
| NRC-2008-0198-0014 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Regulatory Analysis for Final Rulemaking - Compatibility with IAEA Transportation Standards (10 CFR Part 71) | Supporting & Related Material | 2015-06-17T00:00:00Z | 2015 | 6 | 2025-05-21T07:25:18Z | 0 | 0 | 0900006481b419c2 | ||||
| NRC-2008-0198-0013 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements; Final Rule | Rule | 2015-06-12T00:00:00Z | 2015 | 6 | 2025-05-21T07:27:41Z | 2015-14212 | 0 | 0 | 0900006481b303ca | |||
| NRC-2008-0198-0012 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Cancellation of April 2, 2014 Webinar | Other | 2014-03-31T00:00:00Z | 2014 | 3 | 2014-03-31T00:00:00Z | 2025-05-21T07:33:06Z | 0 | 0 | 0900006481692b2b | |||
| NRC-2008-0198-0011 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Public Meeting Announcement for April 2, 2014 Webinar | Other | 2014-03-19T00:00:00Z | 2014 | 3 | 2014-03-19T00:00:00Z | 2025-05-21T07:33:08Z | 0 | 0 | 0900006481670502 | |||
| NRC-2008-0198-0002 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements | Proposed Rule | 2013-05-16T00:00:00Z | 2013 | 5 | 2013-05-16T00:00:00Z | 2013-07-31T03:59:59Z | 2025-05-21T08:45:54Z | 2013-11552 | 0 | 0 | 09000064812e76d5 | |
| NRC-2008-0198-0001 | NRC | Revisions to Transportation Safety Requirements and Harmonization with International Atomic Energy Agency Transportation Requirements NRC-2008-0198 | Press Release Regarding Proposed Rule for Packaging and Transporting Radioactive Materials | Other | 2013-05-15T00:00:00Z | 2013 | 5 | 2013-05-15T00:00:00Z | 2025-05-21T08:45:54Z | 0 | 0 | 09000064812e5f1e |
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;