documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2008-0019" and document_type = "Other" 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-2008-0019-0013 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, 10 CFR 73.54 | Other | 2008-04-18T00:00:00Z | 2008 | 4 | 2025-05-21T09:13:47Z | 0 | 0 | 0900006480511ff6 | ||||
| NRC-2008-0019-0011 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, 10 CFR 73.55 | Other | Draft Rulemaking language | 2008-03-17T00:00:00Z | 2008 | 3 | 2025-05-21T09:13:58Z | 0 | 0 | 09000064803fb5b5 | |||
| NRC-2008-0019-0010 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, 10 CFR 73.54 | Other | 2008-03-17T00:00:00Z | 2008 | 3 | 2025-05-21T09:13:58Z | 0 | 1 | 09000064803fabf5 | ||||
| NRC-2008-0019-0009 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, Part 73, Appendix C | Other | Draft Rulemaking language | 2008-03-11T00:00:00Z | 2008 | 3 | 2025-05-21T09:13:59Z | 0 | 0 | 09000064803f16a2 | |||
| NRC-2008-0019-0008 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, Part 73, Appendix B | Other | Draft Rulemaking language | 2008-02-28T00:00:00Z | 2008 | 2 | 2025-05-21T09:14:01Z | 0 | 0 | 09000064803d0cb6 | |||
| NRC-2008-0019-0007 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text; Personnel Access Authorization Requirements for Nuclear Power Plants | Other | Draft Rulemaking language | 2008-02-28T00:00:00Z | 2008 | 2 | 2025-05-21T09:14:01Z | 0 | 0 | 09000064803d0bb5 | |||
| NRC-2008-0019-0005 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Regulatory Guide DG-5015, Training and Qualification of Security Personnel at Nuclear Power Reactor Facilities | Other | 2008-01-15T00:00:00Z | 2008 | 1 | 2008-01-15T09:58:53Z | 2008-02-26T04:59:59Z | 2025-05-21T09:14:08Z | 0 | 0 | 090000648039aeb9 | ||
| NRC-2008-0019-0006 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text 10 CFR 73.55(l) | Other | Draft Rulemaking language | 2008-01-15T00:00:00Z | 2008 | 1 | 2025-05-21T09:14:08Z | 0 | 0 | 090000648039b5ed | |||
| NRC-2008-0019-0004 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, Appendix B to Part 73 Section VI | Other | Draft Rulemaking language | 2008-01-15T00:00:00Z | 2008 | 1 | 2025-05-21T09:14:08Z | 0 | 0 | 090000648039aed2 | |||
| NRC-2008-0019-0002 | NRC | Power Reactor Security Requirements NRC-2008-0019 | Draft Final Rule Text, Appendix B to Part 73 Section VI | Other | 2008-01-15T00:00:00Z | 2008 | 1 | 2025-05-21T09:14:08Z | 0 | 1 | 090000648039ae90 |
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;