documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "ED_FRDOC_0001" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0926 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Student Aid Programs: Student Assistance General Provisions, Federal Perkins Loan Program, William D. Ford Federal Direct Loan Program, and Federal-Work Study Programs | Rule | 2020-12-11T05:00:00Z | 2020 | 12 | 2020-12-11T05:00:00Z | 2020-12-11T13:08:49Z | 2020-27042 | 0 | 0 | 0900006484998010 | ||
| ED_FRDOC_0001-0922 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Definitions and Selection Criteria That Apply to Direct Grant Programs | Rule | 2020-10-05T04:00:00Z | 2020 | 10 | 2020-10-05T04:00:00Z | 2020-10-05T11:59:29Z | 2020-21745 | 0 | 0 | 09000064848ce42e | ||
| ED_FRDOC_0001-0915 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Final Waivers and Extensions of the Project Periods for the American Indian Vocational Rehabilitation Services Training and Technical Assistance Center and the Vocational Rehabilitation Training Institute for the Preparation of Personnel in American Indian Vocational Rehabilitation Services | Rule | 2020-08-27T04:00:00Z | 2020 | 8 | 2020-08-27T04:00:00Z | 2020-08-27T11:54:40Z | 2020-19004 | 0 | 0 | 0900006484823c78 | ||
| ED_FRDOC_0001-0914 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Waiver and Extension of the Project Periods: American Indian Vocational Rehabilitation Services Program | Rule | 2020-08-17T04:00:00Z | 2020 | 8 | 2020-08-17T04:00:00Z | 2020-08-17T11:46:46Z | 2020-18003 | 0 | 0 | 0900006484807e4a | ||
| ED_FRDOC_0001-0908 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Final Waivers and Extension of the Project Period for the National Center for Information and Technical Support for Postsecondary Students With Disabilities Grant Program | Rule | 2020-08-06T04:00:00Z | 2020 | 8 | 2020-08-06T04:00:00Z | 2020-08-06T11:34:43Z | 2020-17145 | 0 | 0 | 09000064847dcfeb | ||
| ED_FRDOC_0001-0897 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Institutional Eligibility Under the Higher Education Act of 1964, as Amended; CFR Correction | Rule | 2020-06-26T04:00:00Z | 2020 | 6 | 2020-06-26T04:00:00Z | 2020-06-26T11:27:41Z | 2020-13899 | 0 | 0 | 090000648470ecfd | ||
| ED_FRDOC_0001-0896 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Indian Education Discretionary Grant Programs; Professional Development Program | Rule | 2020-06-25T04:00:00Z | 2020 | 6 | 2020-06-25T04:00:00Z | 2020-06-25T12:08:20Z | 2020-13286 | 0 | 0 | 090000648470a0fc | ||
| ED_FRDOC_0001-0872 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Guidance: Constitutionally Protected Prayer and Religious Expression in Public Elementary and Secondary Schools | Rule | 2020-01-21T05:00:00Z | 2020 | 1 | 2020-01-21T05:00:00Z | 2020-01-21T13:04:47Z | 2020-00876 | 0 | 0 | 09000064842c8ffb | ||
| ED_FRDOC_0001-0870 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Adjustment of Civil Monetary Penalties for Inflation | Rule | 2020-01-14T05:00:00Z | 2020 | 1 | 2020-01-14T05:00:00Z | 2020-01-14T12:51:24Z | 2020-00413 | 0 | 0 | 090000648429e2a2 |
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;