documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2010-0310" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2010-0310-0019 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to E. Erb dated February 22, 2019 - Status of PRM-26-6 | Other | 2019-03-21T00:00:00Z | 2019 | 3 | 2019-03-21T00:00:00Z | 2025-05-21T07:06:49Z | 0 | 0 | 0900006483b10392 | |||
| NRC-2010-0310-0018 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to E. Erb dated August 16, 2018 - Status of PRM-26-6 | Other | 2018-08-28T00:00:00Z | 2018 | 8 | 2018-08-28T00:00:00Z | 2025-05-21T07:08:18Z | 0 | 0 | 09000064836676cb | |||
| NRC-2010-0310-0017 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to E. Erb dated February 23, 2018 - Status of PRM-26-6 | Other | 2018-03-13T00:00:00Z | 2018 | 3 | 2018-03-13T00:00:00Z | 2025-05-21T07:11:53Z | 0 | 0 | 090000648300b127 | |||
| NRC-2010-0310-0016 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to E. Erb dated August 31, 2017 - Status of PRM-26-6 | Other | 2017-10-25T00:00:00Z | 2017 | 10 | 2017-10-25T00:00:00Z | 2025-05-21T07:12:30Z | 0 | 0 | 0900006482c05edc | |||
| NRC-2010-0310-0015 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to E. Erb dated February 10, 2017 - Status of PRM-26-6 | Other | 2017-02-28T00:00:00Z | 2017 | 2 | 2017-02-28T00:00:00Z | 2025-05-21T07:14:24Z | 0 | 0 | 09000064824e2504 | |||
| NRC-2010-0310-0014 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | E-mail to Petitioner dated August 11, 2016 - Status of PRM-26-6 | Other | 2016-08-18T00:00:00Z | 2016 | 8 | 2016-08-18T00:00:00Z | 2025-05-21T07:16:11Z | 0 | 0 | 0900006482182701 | |||
| NRC-2010-0310-0002 | NRC | Erik Erb - Minimum Day Off Requirement for Security Officers NRC-2010-0310 | Incoming Petition for Rulemaking from Erik Erb (PRM-26-6) | Other | 2010-11-23T00:00:00Z | 2010 | 11 | 2010-11-23T00:00:00Z | 2025-05-21T08:55:36Z | 0 | 0 | 0900006480ba19b0 |
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;