documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "ED_FRDOC_0001" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-0020 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Student Aid Programs (Student Assistance General Provisions, Federal Perkins Loan Program, Federal Direct Loan Program, Federal Family Education Loan Program) | Rule | 2007-12-26T05:00:00Z | 2007 | 12 | 2007-12-26T05:00:00Z | 2012-06-15T00:59:34Z | E7-24947 | 0 | 0 | 090000648037e88f | ||
| ED_FRDOC_0001-0019 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Direct Grant Programs | Rule | 2007-12-07T05:00:00Z | 2007 | 12 | 2007-12-07T05:00:00Z | 2012-06-15T00:59:34Z | E7-23817 | 0 | 0 | 0900006480371636 | ||
| ED_FRDOC_0001-0016 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Assistance to States for the Education of Children With Disabilities and Preschool Grants for Children With Disabilities; Corrections | Rule | 2007-10-30T04:00:00Z | 2007 | 10 | 2007-10-30T04:00:00Z | 2012-06-15T00:59:34Z | E7-21338 | 0 | 0 | 0900006480357f34 | ||
| ED_FRDOC_0001-0014 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Office of PostsecondaryEducation; Notice of Negotiated Rulemaking for Programs Authorized Under Title IV of the Higher Education Act of 1965, as Amended | Proposed Rule | 2007-10-22T04:00:00Z | 2007 | 10 | 2007-10-22T04:00:00Z | 2012-06-15T00:59:34Z | E7-20785 | 0 | 0 | 09000064803547c2 | ||
| ED_FRDOC_0001-0013 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Federal Perkins Loan Program, Federal Family Education Loan Program, and William D. Ford Federal Direct Loan Program | Rule | 2007-09-28T04:00:00Z | 2007 | 9 | 2007-09-28T04:00:00Z | 2012-06-15T00:59:34Z | E7-19237 | 0 | 0 | 09000064802a9f7a | ||
| ED_FRDOC_0001-0006 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Early Intervention Program for Infants and Toddlers With Disabilities | Proposed Rule | 2007-05-18T04:00:00Z | 2007 | 5 | 2007-05-18T04:00:00Z | 2012-06-15T00:59:34Z | E7-09566 | 0 | 0 | 090000648023e9f5 | ||
| ED_FRDOC_0001-0002 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Title I--Improving the Academic Achievement of the Disadvantaged; Individuals With Disabilities Education Act (IDEA)--Assistance to States for the Education of Children With Disabilities | Rule | 2007-04-09T04:00:00Z | 2007 | 4 | 2007-04-09T04:00:00Z | 2012-06-15T00:59:33Z | 07-01700 | 0 | 0 | 0900006480222829 | ||
| ED_FRDOC_0001-0001 | ED | Recently Posted ED Rules and Notices. ED_FRDOC_0001 | Notice of Proposed Information Collection Requests | Notice | Request for Comments | 2007-03-19T04:00:00Z | 2007 | 3 | 2007-03-19T04:00:00Z | 2020-03-09T13:52:49Z | E7-04921 | 0 | 0 | 0900006480215f83 |
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;