documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "ED", document_type = "Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, 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-2007-OPE-0133-0242 | ED | Title IV Loans ED-2007-OPE-0133 | Federal Perkins Loan Program, Federal Family Education Loan Program, and William D. Ford Federal Direct Loan Program | Rule | Final Regulations | 2007-11-01T04:00:00Z | 2007 | 11 | 2007-11-01T04:00:00Z | 2011-06-11T17:16:30Z | 07-05332 | 0 | 0 | 090000648035e3e5 | |
| ED-2007-OPE-0134-0024 | ED | Title IV--General Provisions ED-2007-OPE-0134 | Federal Student Aid Programs | Rule | Final Regulations | 2007-11-01T04:00:00Z | 2007 | 11 | 2007-11-01T04:00:00Z | 2011-06-11T17:16:30Z | E7-21083 | 0 | 0 | 090000648035e37b | |
| 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-2007-OPE-0135-0055 | ED | Academic Competitiveness Grant (ACG) Program and National Science and Mathematics Access to Retain Talent Grant (National SMART Grant) Program ED-2007-OPE-0135 | Academic Competitiveness Grant Program and National Science and Mathematics Access To Retain Talent Grant Program | Rule | Final Regulations | 2007-10-29T04:00:00Z | 2007 | 10 | 2007-10-29T18:55:22Z | 2011-06-11T17:16:31Z | E7-21068 | 0 | 0 | 09000064803577a1 | |
| 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-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-2007-0115-0001 | ED | Magnet Schools Assistance Program ED-2007-0115 | Magnet Schools Assistance Program | Rule | 2007-03-09T05:00:00Z | 2007 | 3 | 2007-03-09T05:00:00Z | 2008-01-08T21:03:43Z | E7-04270 | 0 | 0 | 0900006480210c98 | ||
| ED-2007-0031-0001 | ED | State-Administered Programs ED-2007-0031 | State-Administered Programs | Rule | 2007-01-25T05:00:00Z | 2007 | 1 | 2007-01-25T05:00:00Z | 2011-06-11T17:16:28Z | E7-01177 | 0 | 0 | 09000064801f72f2 |
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;