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 = 2021 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-0975 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal-State Relationship Agreements, Federal Pell Grant Program, Academic Competitiveness Grant, and National Science and Mathematics Access to Retain Talent Grant | Rule | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-28T04:00:00Z | 2021-10-28T12:08:15Z | 2021-23423 | 0 | 0 | 0900006484dfcead | ||
| ED_FRDOC_0001-0961 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Final Requirements: American Rescue Plan Act Emergency Assistance to Non-Public Schools Program | Rule | 2021-07-13T04:00:00Z | 2021 | 7 | 2021-07-13T04:00:00Z | 2021-07-13T11:52:05Z | 2021-14862 | 0 | 0 | 0900006484be7e52 | ||
| ED_FRDOC_0001-0956 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Final Requirements: American Rescue Plan Act Homeless Children and Youth Program | Rule | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2021-07-09T11:54:53Z | 2021-14705 | 0 | 0 | 0900006484bdf1ce | ||
| ED_FRDOC_0001-0953 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Office of Post-Secondary Education; CFR Correction | Rule | 2021-06-25T04:00:00Z | 2021 | 6 | 2021-06-25T04:00:00Z | 2021-06-25T11:50:22Z | 2021-13694 | 0 | 0 | 0900006484bb1b2c | ||
| ED_FRDOC_0001-0951 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Enforcement of Title IX of the Education Amendments of 1972 with Respect to Discrimination Based on Sexual Orientation and Gender Identity in Light of Bostock v. Clayton County | Rule | 2021-06-22T04:00:00Z | 2021 | 6 | 2021-06-22T04:00:00Z | 2021-06-22T11:35:29Z | 2021-13058 | 0 | 0 | 0900006484b9eb8b | ||
| ED_FRDOC_0001-0950 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Repeal of the William D. Ford Federal Direct Loan Program Subsidized Usage Limit Restriction | Rule | 2021-06-14T04:00:00Z | 2021 | 6 | 2021-06-14T04:00:00Z | 2021-06-14T11:51:18Z | 2021-12384 | 0 | 0 | 0900006484b798fa | ||
| ED_FRDOC_0001-0946 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Calculation of the Endowment Factor for Allocations to Historically Black Colleges and Universities under the Coronavirus Response and Relief Supplemental Appropriations Act | Rule | 2021-04-22T04:00:00Z | 2021 | 4 | 2021-04-22T04:00:00Z | 2021-04-22T11:57:15Z | 2021-08379 | 0 | 0 | 0900006484ab2ee5 | ||
| ED_FRDOC_0001-0933 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Adjustment of Civil Monetary Penalties for Inflation | Rule | 2021-02-03T05:00:00Z | 2021 | 2 | 2021-02-03T05:00:00Z | 2021-02-03T12:44:24Z | 2021-02231 | 0 | 0 | 0900006484a17d46 | ||
| ED_FRDOC_0001-0932 | 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); Correction | Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-01-19T12:52:13Z | 2020-28105 | 0 | 0 | 09000064849f8089 |
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;