home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

14 rows where docket_id = "NRC-2011-0018" and posted_year = 2011 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

document_type 4

  • Supporting & Related Material 10
  • Proposed Rule 2
  • Notice 1
  • Other 1

posted_year 1

  • 2011 · 14 ✖

agency_id 1

  • NRC 14
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-0020 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Agenda for June 1, 2011 Meeting Other   2011-05-25T00:00:00Z 2011 5 2011-05-25T00:00:00Z   2025-05-21T08:52:30Z   0 0 0900006480e32533
NRC-2011-0018-0019 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Public Meeting to Discuss the Proposed Rule on Enhanced Weapons, Firearms Background Checks, and Security Event Notifications Notice   2011-05-25T00:00:00Z 2011 5 2011-05-25T00:00:00Z   2025-05-21T08:52:30Z 2011-12959 0 0 0900006480e3252b
NRC-2011-0018-0014 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Enhanced Weapons, Firearms Background Checks, and Security Event Notifications Proposed Rule Extension of Comment Period 2011-04-27T00:00:00Z 2011 4 2011-04-27T00:00:00Z 2011-08-03T03:59:59Z 2025-05-21T08:52:41Z 2011-10163 0 0 0900006480c3a6fa
NRC-2011-0018-0007 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 NRC Form 754 Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a4
NRC-2011-0018-0009 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 SECY-08-0050A Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a6
NRC-2011-0018-0002 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Firearms Guidelines Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd14e
NRC-2011-0018-0008 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 SECY-08-0050 Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:05Z   0 0 0900006480bdd9a5
NRC-2011-0018-0006 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Regulatory Analysis, Appendix B Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a3
NRC-2011-0018-0005 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Regulatory Analysis, Appendix A Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a2
NRC-2011-0018-0011 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Letter opinion from ATF's Office of Enforcement on the transfer of enhanced weapons Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdda30
NRC-2011-0018-0003 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Environmental Assessment Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a0
NRC-2011-0018-0004 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Regulatory Analysis Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a1
NRC-2011-0018-0010 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 SRM-SECY-08-0050/0050A Supporting & Related Material   2011-02-07T00:00:00Z 2011 2     2025-05-21T08:55:04Z   0 0 0900006480bdd9a8
NRC-2011-0018-0001 NRC Enhanced Weapons, Firearms Background Checks, and Security Event Notifications NRC-2011-0018 Enhanced Weapons, Firearms Background Checks, and Security Event Notifications Proposed Rule   2011-02-03T00:00:00Z 2011 2 2011-02-03T00:00:00Z 2011-05-05T03:59:59Z 2025-05-21T08:55:05Z 2011-01766 0 0 0900006480bda30e

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 458.037ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API