documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2007-0670" 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 6
| 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-2007-0670-0010 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Rulemaking Activities Being Discontinued by the NRC | Proposed Rule | 2026-02-25T05:00:00Z | 2026 | 2 | 2026-02-25T05:00:00Z | 2026-02-26T02:08:13Z | 2026-03791 | 0 | 0 | 09000064b91da5da | ||
| NRC-2007-0670-0005 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Request for Extension of Comment Period from Rodney McCullum, NEI | Supporting & Related Material | Letter | 2008-03-19T00:00:00Z | 2008 | 3 | 2025-05-21T09:13:56Z | 0 | 0 | 0900006480400076 | |||
| NRC-2007-0670-0004 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Geologic Repository Operations Area Security and Material Control and Accounting Requirements; Extension of Comment Period | Proposed Rule | 2008-02-26T00:00:00Z | 2008 | 2 | 2008-02-26T00:00:00Z | 2008-05-06T03:59:59Z | 2025-05-21T09:14:01Z | E8-03597 | 0 | 0 | 09000064803c7404 | |
| NRC-2007-0670-0003 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Geologic Repository Operations Area Security and Material Control and Accounting Requirements; Meeting Cancellation | Notice | 2008-01-18T00:00:00Z | 2008 | 1 | 2008-01-18T00:00:00Z | 2025-05-21T09:14:07Z | E8-00873 | 0 | 0 | 090000648039d4f5 | ||
| NRC-2007-0670-0002 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Geologic Repository Operations Area Security and Material Control and Accounting Requirements; Meeting | Notice | 2007-12-31T00:00:00Z | 2007 | 12 | 2007-12-31T00:00:00Z | 2025-05-21T09:14:09Z | E7-25415 | 0 | 0 | 0900006480380a83 | ||
| NRC-2007-0670-0001 | NRC | Geologic Repository Operations Area Security and Material Control and Accounting Requirements NRC-2007-0670 | Geologic Repository Operations Area Security and Material Control and Accounting Requirements | Proposed Rule | 2007-12-20T00:00:00Z | 2007 | 12 | 2007-12-20T00:00:00Z | 2008-03-05T04:59:59Z | 2025-05-21T09:14:10Z | E7-24346 | 0 | 0 | 090000648037cd9d |
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;