documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2007-0268" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_end_date (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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-OAR-2007-0268-2178 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | PAG Manual: Protective Action Guides and Planning Guidance for Radiological Incidents (Final, November 2016) | Supporting & Related Material | Guidance | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T13:48:27Z | 0 | 0 | 09000064823ee05f | |||
| EPA-HQ-OAR-2007-0268-2177 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | Guidance: PAG Manual: Protective Action Guides and Planning Guidance for Radiological Incidents | Notice | Notice of Data Availability | 2016-12-08T05:00:00Z | 2016 | 12 | 2016-12-08T16:07:59Z | 2016-29439 | 0 | 0 | 09000064823eca26 | ||
| EPA-HQ-OAR-2007-0268-0260 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | Excerpts from the National Council on Radiation Protection and Measurements (NCRP) Report No. 174 - Preconception and Prenatal Radiation Exposure: Health Effects and Protective Guidance | Supporting & Related Material | Report | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T18:14:33Z | 0 | 0 | 0900006482079969 | |||
| EPA-HQ-OAR-2007-0268-0212 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | EPA Drinking Water PAG - Cost Estimates | Supporting & Related Material | Economic Analysis | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T15:27:00Z | 0 | 0 | 090000648202cfbc | |||
| EPA-HQ-OAR-2007-0268-0210 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | Draft Protective Action Guide for Drinking Water after a Radiological Incident | Notice | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T04:00:00Z | 2016-07-26T03:59:59Z | 2017-06-22T01:03:06Z | 2016-13786 | 0 | 0 | 090000648202c03a | |
| EPA-HQ-OAR-2007-0268-0211 | EPA | Updates to Protective Action Guides Manual: Protective Action Guides (PAGs) and Planning Guidance for Radiological Incidents EPA-HQ-OAR-2007-0268 | EPA Draft Protective Action Guide (PAG) for Drinking Water | Supporting & Related Material | Guidance | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T15:26:59Z | 0 | 0 | 090000648202cc0d |
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;