documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2008-0369" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_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-2008-0369-0008 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Tennessee Valley Authority, Watts Bar Nuclear Station, Unit 2; Notice of Intent to Prepare a Supplement to the Operating License Final Environmental Statement and Conduct Scoping Process | Notice | 2009-09-11T00:00:00Z | 2009 | 9 | 2009-09-11T00:00:00Z | 2009-10-31T03:59:59Z | 2025-05-21T09:04:09Z | E9-21978 | 0 | 0 | 0900006480a20019 | |
| NRC-2008-0369-0007 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Establishment of Atomic Safety and Licensing Board; Tennessee Valley Authority | Notice | 2009-08-03T00:00:00Z | 2009 | 8 | 2025-05-21T09:04:20Z | E9-18437 | 0 | 0 | 09000064809ffefc | |||
| NRC-2008-0369-0006 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Tennessee Valley Authority; Notice of Receipt of Update to Application for Facility Operating License and Notice of Opportunity for Hearing for the Watts Bar Nuclear Plant, Unit 2 and Order Imposing Procedures for Access to Sensitive Unclassified Non-Safeguards Information and Safeguards Information for Contention Preparation | Notice | 2009-05-22T00:00:00Z | 2009 | 5 | 2025-05-21T09:04:41Z | E9-11903 | 0 | 0 | 09000064809ac09e | |||
| NRC-2008-0369-0005 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Tennessee Valley Authority: Notice of Receipt of Update to Application for Facility Operating License and Notice of Opportunity for Hearing for the Watts Bar Nuclear Plant, Unit 2 and Order Imposing Procedures for Access to Sensitive Unclassified Non-Safeguards Information and Safeguards Information for Contention Preparation | Notice | 2009-05-15T00:00:00Z | 2009 | 5 | 2025-05-21T09:04:42Z | E9-11262 | 0 | 0 | 090000648099452a | |||
| NRC-2008-0369-0004 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Tennessee Valley Authority Notice of Receipt of Update to Application for Facility Operating License and Notice of Opportunity for Hearing for the Watts Bar Nuclear Plant, Unit 2 and Order Imposing Procedures for Access to Sensitive Unclassified Non-Safeguards Information and Safeguards Information for Contention Preparation | Notice | 2009-05-08T00:00:00Z | 2009 | 5 | 2025-05-21T09:04:44Z | E9-10744 | 0 | 0 | 090000648097f489 | |||
| NRC-2008-0369-0003 | NRC | Environmental Assessment and Finding of No Significant Impact: Watts Bar Nuclear Plant, Unit 2 NRC-2008-0369 | Tennessee Valley Authority; Notice of Receipt of Update to Application for Facility Operating License and Notice of Opportunity for Hearing for the Watts Bar Nuclear Plant, Unit 2 and Order Imposing Procedures for Access to Sensitive Unclassified Non-Safeguards Information and Safeguards Information for Contention Preparation | Notice | 2009-05-01T00:00:00Z | 2009 | 5 | 2025-05-21T09:04:47Z | E9-10043 | 0 | 0 | 0900006480971550 |
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;