documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2011-0018" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-0064 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Letter from Janet Schlueter, NEI, dated May 8, 2020 - Industry Concerns on Supplement to SECY-18-0058 | Supporting & Related Material | 2020-07-21T00:00:00Z | 2020 | 7 | 2025-05-21T06:54:12Z | 0 | 0 | 090000648478d257 | ||||
| NRC-2011-0018-0065 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Letter to Janet Schlueter, NEI, dated July 10, 2020 - Response to Industry Concerns on Supplement to SECY-18-0058 | Supporting & Related Material | 2020-07-21T00:00:00Z | 2020 | 7 | 2025-05-21T06:54:12Z | 0 | 0 | 090000648478d258 | ||||
| NRC-2011-0018-0057 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 1 - FRN: Draft Final Rule: Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e38 | ||||
| NRC-2011-0018-0058 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 2 - Redline/Strikeout of Draft Final Rule: Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e39 | ||||
| NRC-2011-0018-0061 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 5 - Enhanced Weapons Rulemaking Applicability Table | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3c | ||||
| NRC-2011-0018-0059 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 3 - Regulatory Analysis for Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3a | ||||
| NRC-2011-0018-0056 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Draft Final Rule - Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3f | ||||
| NRC-2011-0018-0063 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 7 - Alternate Views of Some Staff on Suspicious Activity Reporting | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3e | ||||
| NRC-2011-0018-0060 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 4 - Redline/Strikeout of Regulatory Analysis for Enhanced Weapons, Firearms Background Checks, and Security Event Notifications | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3b | ||||
| NRC-2011-0018-0062 | NRC | Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 | Supplement to SECY-18-0058: Enclosure 6 - History of Suspicious Activity Reporting | Supporting & Related Material | 2020-02-25T00:00:00Z | 2020 | 2 | 2025-05-21T06:56:05Z | 0 | 0 | 09000064843b2e3d |
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;