documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2010-0194" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, comment_end_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2010-0194-0013 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Implementation Guidance for Physical Protection of Byproduct Material Category 1 and Category 2 Quantities of Radioactive Material; Draft Guidance Document for Comment; Extension of Comment Period | Notice | 2010-10-13T00:00:00Z | 2010 | 10 | 2010-10-13T00:00:00Z | 2011-01-19T04:59:59Z | 2025-05-21T08:55:49Z | 2010-25784 | 0 | 0 | 0900006480b6de18 | |
| NRC-2010-0194-0008 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Transcript of September 20, 2010 Public Meeting on Draft Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material (Rockville, Maryland) | Supporting & Related Material | Transcript | 2010-10-04T00:00:00Z | 2010 | 10 | 2025-05-21T08:55:53Z | 0 | 0 | 0900006480b67349 | |||
| NRC-2010-0194-0004 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Transcript of September 1, 2010 Public Meeting on Draft Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material (Austin, Texas) | Supporting & Related Material | Transcript | 2010-09-21T00:00:00Z | 2010 | 9 | 2025-05-21T08:56:06Z | 0 | 0 | 0900006480b54efc | |||
| NRC-2010-0194-0003 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Implementation Guidance for Physical Protection of Byproduct Material; Category 1 and Category 2 Quantities of Radioactive Material; Meeting | Notice | 2010-08-06T00:00:00Z | 2010 | 8 | 2010-08-06T00:00:00Z | 2010-11-13T04:59:59Z | 2025-05-21T08:57:16Z | 2010-19408 | 0 | 0 | 0900006480b2acad | |
| NRC-2010-0194-0002 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Implementation Guidance for Physical Protection of Byproduct Material; Category 1 and Category 2 Quantities of Radioactive Material | Notice | 2010-07-14T00:00:00Z | 2010 | 7 | 2010-07-14T00:00:00Z | 2010-11-13T04:59:59Z | 2025-05-21T08:57:54Z | 2010-17126 | 1 | 0 | 0900006480b195f3 | |
| NRC-2010-0194-0001 | NRC | Notice of Availability of Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material NRC-2010-0194 | Implementation Guidance for 10 CFR Part 37, Physical Protection of Byproduct Material Category 1 and Category 2 Quantities of Radioactive Material | Other | Guidance | 2010-06-15T00:00:00Z | 2010 | 6 | 2010-06-15T00:00:00Z | 2025-05-21T08:58:08Z | 0 | 0 | 0900006480b02554 |
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;