documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NRC-2011-0018" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, last_modified, posted_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-2011-0018-0054 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Draft Redline Federal Register Notice for the Enhanced Weapons, Firearms Background Checks, and Security Event Notifications Final Rule | Supporting & Related Material | 2019-05-28T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:15Z | 0 | 0 | 0900006483ccddfa | ||||
| NRC-2011-0018-0055 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Slides for May 30, 2019, Public Meeting | Supporting & Related Material | 2019-05-28T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:15Z | 0 | 0 | 0900006483ccde95 | ||||
| NRC-2011-0018-0048 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 3 - Final Rule: Environmental Assessment for Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09cd | ||||
| NRC-2011-0018-0050 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 5 - Final Rule: History of Suspicious Activity Reporting | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09cf | ||||
| NRC-2011-0018-0046 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 1 - FRN: Final Rule: Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09cb | ||||
| NRC-2011-0018-0052 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Final Rule: Congressional Review Act Summary for Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09ca | ||||
| NRC-2011-0018-0053 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Final Rule: Congressional Correspondence - Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09c9 | ||||
| NRC-2011-0018-0047 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 2 - Final Rule: Regulatory Analysis for Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09cc | ||||
| NRC-2011-0018-0045 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Draft Final Rule - Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:21Z | 0 | 0 | 0900006483cc06f3 | ||||
| NRC-2011-0018-0051 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 6 - Final Rule: 2011 Proposed Rule Text Changes to Remove the 45-Day Appeal Deadline and Extension Process | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:21Z | 0 | 0 | 0900006483cc06f2 | ||||
| NRC-2011-0018-0049 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | SECY-18-0058: Enclosure 4 - Final Rule: History of the Enhanced Weapons Rulemaking | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc09ce |
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;