documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "ED_FRDOC_0001" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ED_FRDOC_0001-0791 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Student Aid Programs (Institutional Eligibility): Foreign Institutions Affected by Natural Disasters | Rule | 2017-10-18T04:00:00Z | 2017 | 10 | 2017-10-18T04:00:00Z | 2017-10-18T12:04:04Z | 2017-22628 | 0 | 0 | 0900006482bddd74 | ||
| ED_FRDOC_0001-0790 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Student Aid Programs: Student Assistance General Provisions, Federal Perkins Loan Program, Federal Family Education Loan Program, and Federal Direct Loan Program | Rule | 2017-10-17T04:00:00Z | 2017 | 10 | 2017-10-17T04:00:00Z | 2017-10-17T12:12:01Z | 2017-22489 | 0 | 0 | 0900006482bd275c | ||
| ED_FRDOC_0001-0789 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Student Aid Programs | Rule | 2017-09-29T04:00:00Z | 2017 | 9 | 2017-09-29T04:00:00Z | 2017-09-29T11:44:20Z | 2017-20844 | 0 | 0 | 0900006482b8ac28 | ||
| ED_FRDOC_0001-0784 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | National Individuals with Disabilities Education Act Technical Assistance Center on Early Childhood Longitudinal Data Systems: Final Waiver and Extension of the Project Period | Rule | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-07-31T11:56:02Z | 2017-16068 | 0 | 0 | 0900006482984c4e | ||
| ED_FRDOC_0001-0770 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Perkins Loan Program; CFR Correction | Rule | 2017-03-16T04:00:00Z | 2017 | 3 | 2017-03-16T04:00:00Z | 2017-03-16T11:55:29Z | 2017-05299 | 0 | 0 | 090000648250c6dd | ||
| ED_FRDOC_0001-0763 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Policy for Protection of Human Subjects | Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-01-19T16:29:20Z | 2017-01058 | 0 | 0 | 09000064824850ed | ||
| ED_FRDOC_0001-0766 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Family Educational Rights and Privacy Act | Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-01-19T16:30:31Z | 2017-00958 | 0 | 0 | 090000648248561f |
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;