documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2008-0566" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, withdrawn, posted_date (date), comment_start_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-0566-0050 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | In the Matter of DTE Electric Company, Combined License for Enrico Fermi Unit 3; Notice of Hearing | Notice | 2014-12-05T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:29Z | 2014-28610 | 0 | 0 | 090000648195e610 | |||
| NRC-2008-0566-0049 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | DTE Electric Company, Fermi 3; Availability of Combined License Application | Notice | 2014-04-30T00:00:00Z | 2014 | 4 | 2025-05-21T07:32:59Z | 2014-09884 | 0 | 0 | 09000064816d6e3c | |||
| NRC-2008-0566-0048 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | DTE Electric Company, Fermi 3; Availability of Combined License Application | Notice | 2014-04-23T00:00:00Z | 2014 | 4 | 2025-05-21T07:33:01Z | 2014-09266 | 0 | 0 | 09000064816c3496 | |||
| NRC-2008-0566-0047 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | License Applications: DTE Electric Co., Fermi 3 | Notice | 2014-04-16T00:00:00Z | 2014 | 4 | 2014-04-16T00:00:00Z | 2025-05-21T07:33:03Z | 2014-08545 | 0 | 0 | 09000064816b5e7d | ||
| NRC-2008-0566-0045 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | DTE Electric Company, Fermi 3; Availability of Combined License Application | Notice | 2014-04-09T00:00:00Z | 2014 | 4 | 2025-05-21T07:33:04Z | 2014-07958 | 0 | 0 | 09000064816ab2d8 | |||
| NRC-2008-0566-0046 | NRC | Application for a Combined License: Detroit Edison Company NRC-2008-0566 | Unified Agenda of Federal Regulatory and Deregulatory Actions | Proposed Rule | 2014-01-07T00:00:00Z | 2014 | 1 | 2025-05-21T08:42:18Z | 0 | 1 | 09000064814f1480 |
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;