documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NARA-20-0011" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NARA-20-0011-0006 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | NARA-20-0011 Consolidated Reply for all schedules in this notice (no comments received) | Other | Consolidated Reply | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T04:00:00Z | 2020-10-07T03:08:43Z | 0 | 0 | 09000064846e0600 | ||
| NARA-20-0011-0003 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | DAA-0058-2019-0003 DOT, IRS, Criminal Investigation Management Information System | Other | Proposed Schedule | 2020-04-24T04:00:00Z | 2020 | 4 | 2020-04-24T04:00:00Z | 2020-06-09T03:59:59Z | 2020-10-07T03:08:08Z | 0 | 0 | 09000064844d3949 | |
| NARA-20-0011-0004 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | DAA-0418-2017-0001 HHS, Substance Abuse and Mental Health Services Admin, St. Elizabeth_s Hospital Records | Other | Proposed Schedule | 2020-04-24T04:00:00Z | 2020 | 4 | 2020-04-24T04:00:00Z | 2020-06-09T03:59:59Z | 2020-10-07T03:08:45Z | 0 | 0 | 09000064844d394a | |
| NARA-20-0011-0002 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | DAA-0021-2019-0003 Admin Office of the US Courts, US Courts, Non-Case File Records | Other | Proposed Schedule | 2020-04-24T04:00:00Z | 2020 | 4 | 2020-04-24T04:00:00Z | 2020-06-09T03:59:59Z | 2020-10-07T03:08:06Z | 0 | 0 | 09000064844d3948 | |
| NARA-20-0011-0005 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | DAA-0567-2017-0008 DHS, Immigration and Customs Enforcement, ICE National Detention Standards Development and Implementation | Other | Proposed Schedule | 2020-04-24T04:00:00Z | 2020 | 4 | 2020-04-24T04:00:00Z | 2020-06-09T03:59:59Z | 2020-10-07T03:08:56Z | 0 | 0 | 09000064844d394b | |
| NARA-20-0011-0001 | NARA | NARA-2020-038 Records schedules NARA-20-0011 | NARA-2020-038 Records Schedules | Notice | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T04:00:00Z | 2020-04-24T03:59:59Z | 2020-04-24T17:49:33Z | 2020-08568 | 0 | 0 | 09000064844c5196 |
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;