documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2002-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), last_modified (date)
document_type 4
agency_id 1
- NRC 7
| 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-2002-0002-0148 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Fitness for Duty Programs | Rule | Correction | 2009-08-03T00:00:00Z | 2009 | 8 | 2025-05-21T09:04:20Z | E9-18364 | 0 | 0 | 09000064809ffed3 | ||
| NRC-2002-0002-0147 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Availability of Model Safety Evaluation, Model No Significant Hazards Determination: Model Application For Licensees That Wish To Adopt TSTF-511, Revision 0 (Eliminate Working Hour Restrictions, etc.) | Notice | 2008-12-30T00:00:00Z | 2008 | 12 | 2025-05-21T09:05:37Z | E8-30939 | 0 | 0 | 09000064808079ff | |||
| NRC-2002-0002-0146 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Regulatory Analysis of the Final Rulemaking to Amend the Fitness-for-Duty Rule (10 CFR Part 26) | Supporting & Related Material | 2008-07-01T16:07:55Z | 2008 | 7 | 2025-05-21T09:11:11Z | 0 | 0 | 09000064807d6390 | ||||
| NRC-2002-0002-0145 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Appendix A to Part 26 Final Rule - Derivation and Distribution Tables for Part 26 | Supporting & Related Material | 2008-07-01T16:01:24Z | 2008 | 7 | 2025-05-21T09:11:11Z | 0 | 0 | 09000064807d6355 | ||||
| NRC-2002-0002-0143 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Fitness for Duty Programs; Correction | Rule | Correction | 2008-04-22T00:00:00Z | 2008 | 4 | 2025-05-21T09:13:46Z | Z8-04998 | 0 | 0 | 09000064805199b4 | ||
| NRC-2002-0002-0142 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Final Rule - Fitness for Duty Programs | Rule | Final Rule | 2008-03-31T00:00:00Z | 2008 | 3 | 2025-05-21T09:13:52Z | E8-04998 | 0 | 0 | 09000064804147e3 | ||
| NRC-2002-0002-0144 | NRC | Fitness-for-Duty Program NRC-2002-0002 | Federal Register Notice - Availability of Draft Outline and Rule Wording | Proposed Rule | 2002-02-15T12:55:41Z | 2002 | 2 | 2002-02-15T12:55:41Z | 2025-05-21T09:20:51Z | 0 | 0 | 0900006480557abb |
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;