documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NARA-21-0012" 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-21-0012-0008 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | NARA-2021-044 (FDMS NARA-21-0012) Consolidated Reply for all schedules in this notice (no comments received) | Other | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T04:00:00Z | 2021-11-03T00:49:32Z | 0 | 0 | 0900006484e05bb0 | |||
| NARA-21-0012-0007 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0064-2018-0008 Memo (duplicate schedule from prior notice) | Supporting & Related Material | 2021-09-02T04:00:00Z | 2021 | 9 | 2021-09-03T00:40:38Z | 0 | 0 | 0900006484d4737f | ||||
| NARA-21-0012-0001 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | Records Schedules; Availability and Request for Comments | Notice | Request for Comments | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-08-31T03:59:59Z | 2021-08-30T18:03:40Z | 2021-18578 | 0 | 0 | 0900006484cb1b20 |
| NARA-21-0012-0004 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0292-2021-0003 HHS Admin Children and Families Technical Assistance Records | Other | Proposed Schedule | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-10-15T03:59:59Z | 2021-08-31T01:08:18Z | 0 | 0 | 0900006484cb3bab | |
| NARA-21-0012-0003 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0237-2020-0002 DoT FAA Automatic Dependent Surveillance-Broadcast Service Availability Prediction Tool | Other | Proposed Schedule | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-10-15T03:59:59Z | 2021-08-31T01:08:33Z | 0 | 0 | 0900006484cb3baa | |
| NARA-21-0012-0005 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0361-2021-0011 DoD DLA Environ and Haz Materials Mgt Records | Other | Proposed Schedule | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-10-15T03:59:59Z | 2021-08-31T01:08:02Z | 0 | 0 | 0900006484cb3bac | |
| NARA-21-0012-0002 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0237-2019-0004 DoT FAA Survey Study Records | Other | Proposed Schedule | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-10-15T03:59:59Z | 2021-08-31T01:07:40Z | 0 | 0 | 0900006484cb34f4 | |
| NARA-21-0012-0006 | NARA | NARA-2021-044 Records schedules NARA-21-0012 | DAA-0361-2021-0022 DoD DLA Human Resource Management Records | Other | Proposed Schedule | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T04:00:00Z | 2021-10-15T03:59:59Z | 2021-08-31T01:07:50Z | 0 | 0 | 0900006484cb3b84 |
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;