documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2008-0252" and posted_year = 2015 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-0252-0055 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc.; Establishment of Atomic Safety and Licensing Board | Notice | 2015-12-18T00:00:00Z | 2015 | 12 | 2025-05-21T07:21:19Z | 2015-31875 | 0 | 0 | 0900006481db980d | |||
| NRC-2008-0252-0053 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Vogtle Electric Generating Plant, Units 3 and 4; License Amendment Application | Notice | 2015-10-08T00:00:00Z | 2015 | 10 | 2015-10-08T00:00:00Z | 2015-11-10T04:59:59Z | 2025-05-21T07:22:09Z | 2015-25688 | 0 | 0 | 0900006481cb9e28 | |
| NRC-2008-0252-0052 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Vogtle Electric Generating Station, Units 3 and 4; License Amendment Application | Notice | 2015-09-03T00:00:00Z | 2015 | 9 | 2015-09-03T00:00:00Z | 2015-10-06T03:59:59Z | 2025-05-21T07:22:24Z | 2015-21818 | 0 | 0 | 0900006481c53317 | |
| NRC-2008-0252-0049 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Vogtle Electric Generating Station, Units 3 and 4; License Amendment Application | Notice | 2015-07-09T00:00:00Z | 2015 | 7 | 2015-07-09T00:00:00Z | 2015-08-11T03:59:59Z | 2025-05-21T07:25:03Z | 2015-16796 | 0 | 0 | 0900006481b754b7 | |
| NRC-2008-0252-0048 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Vogtle Electric Generating Station, Units 3 and 4; Southern Nuclear Operating Company; Tier 1 Editorial and Consistency Changes; Issuance of Exemption and Combined License Amendment | Notice | 2015-04-14T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:44Z | 2015-08566 | 0 | 0 | 0900006481aa459f | |||
| NRC-2008-0252-0047 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Vogtle Electric Generating Station, Units 3 and 4; Southern Nuclear Operating Company; Containment Structural Wall Module Design Details; Issuance of Exemption and Combined License Amendment | Notice | 2015-04-13T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:45Z | 2015-08411 | 0 | 0 | 0900006481aa1404 | |||
| NRC-2008-0252-0046 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | In the Matter of Municipal Electric Authority of Georgia (Vogtle Electric Generating Plant, Units 3 and 4); Order Extending the Date by Which the Direct Transfer of Licenses is to be Completed | Notice | 2015-04-03T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:46Z | 2015-07710 | 0 | 0 | 0900006481a8acdd | |||
| NRC-2008-0252-0045 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc.; Vogtle Combined License; Inspections, Tests, Analyses and Acceptance Criteria | Notice | 2015-02-05T00:00:00Z | 2015 | 2 | 2025-05-21T07:30:13Z | 2015-02271 | 0 | 0 | 09000064819f52d7 |
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;