home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

10 rows where agency_id = "ED", document_type = "Proposed Rule" and posted_year = 2010 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: docket_id, subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

posted_year 1

  • 2010 · 10 ✖

document_type 1

  • Proposed Rule · 10 ✖

agency_id 1

  • ED · 10 ✖
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-0451 ED Recently Posted ED Rules and Notices. ED_FRDOC_0001 Program Integrity: Gainful Employment; Correction Proposed Rule   2010-10-29T04:00:00Z 2010 10 2010-10-29T04:00:00Z   2012-06-15T00:59:57Z 2010-27415 0 0 0900006480b7ab54
ED-2010-OPE-0012-14172 ED Gainful Employment--Student Assistance General Provisions--34 CFR Part 668 ED-2010-OPE-0012 Program Integrity: Gainful Employment Proposed Rule Announcements of Hearings on Proposed Regulations 2010-10-18T04:00:00Z 2010 10 2010-10-18T04:00:00Z   2011-06-11T17:16:43Z 2010-26180 0 0 0900006480b71d33
ED-2010-OCFO-0015-0001 ED Education Department Acquisition Regulations ED-2010-OCFO-0015 Department of Education Acquisition Regulation Proposed Rule Notice of Proposed Rulemaking (NPRM) 2010-08-23T04:00:00Z 2010 8 2010-08-23T04:00:00Z 2010-09-23T03:59:59Z 2011-06-11T17:16:40Z 2010-20198 0 0 0900006480b37b68
ED-2010-OESE-0013-0001 ED Impact Aid Programs ED-2010-OESE-0013 Impact Aid Programs Proposed Rule Notice of Proposed Rulemaking (NPRM) 2010-08-13T04:00:00Z 2010 8 2010-08-13T04:00:00Z 2010-09-14T03:59:59Z 2011-06-11T17:16:41Z 2010-20065 0 0 0900006480b2f88e
ED-2010-OPE-0012-0001 ED Gainful Employment--Student Assistance General Provisions--34 CFR Part 668 ED-2010-OPE-0012 Program Integrity; Gainful Employment Proposed Rule   2010-07-26T04:00:00Z 2010 7 2010-07-26T04:00:00Z 2010-09-10T03:59:59Z 2011-06-11T17:16:43Z 2010-17845 0 0 0900006480b20b5f
ED-2010-OPE-0009-0001 ED Foreign Institutions-Federal Student Aid Programs ED-2010-OPE-0009 Foreign Institutions-Federal Student Aid Programs Proposed Rule Advanced Notice of Proposed Rulemaking (ANPRM) 2010-07-20T04:00:00Z 2010 7 2010-07-20T04:00:00Z 2010-08-20T03:59:59Z 2011-06-11T17:16:42Z 2010-17313 0 0 0900006480b1cfca
ED-2010-OPE-0004-0001 ED Program Integrity Issues--Title IV, Higher Education Act of 1965, as amended--34 CFR Part 600, 602, 603, 668, 682, 685, 686, 690, and 691 ED-2010-OPE-0004 Program Integrity Issues Proposed Rule Advanced Notice of Proposed Rulemaking (ANPRM) 2010-06-18T04:00:00Z 2010 6 2010-06-18T04:00:00Z 2010-08-03T03:59:59Z 2011-06-11T17:16:42Z 2010-14107 0 0 0900006480b05628
ED_FRDOC_0001-0438 ED Recently Posted ED Rules and Notices. ED_FRDOC_0001 Promoting Postbaccalaureate Opportunities for Hispanic Americans Program Proposed Rule   2010-06-03T04:00:00Z 2010 6 2010-06-03T04:00:00Z 2010-07-07T03:59:59Z 2012-06-15T00:59:56Z 2010-13318 0 0 0900006480afab5e
ED-2010-OPE-0002-0001 ED Special Educational Programs for Students Whose Families Are Engaged in Migrant and Other Seasonal Farmwork--HEP and CAMP, The Federal TRIO Programs (Training Program, Talent Search, Educational Opportunity Centers, Upward Bound, Student Support Services, and the Ronald E. McNair Postbaccalaureate Achievement Programs), and Gaining Early Awareness and Readiness for Undergraduate Program ED-2010-OPE-0002 High School Equivalency Program and College Assistance Migrant Program, The Federal TRIO Programs, etc. Proposed Rule Notice of Proposed Rulemaking (NPRM) 2010-03-23T04:00:00Z 2010 3 2010-03-23T04:00:00Z 2010-04-23T03:59:59Z 2011-06-11T17:16:42Z 2010-04869 0 0 0900006480ac61b0
ED-2010-OESE-0001-0001 ED Teacher Incentive Fund ED-2010-OESE-0001 Teacher Incentive Fund Program Proposed Rule Notice of Proposed Rulemaking (NPRM) 2010-02-26T05:00:00Z 2010 2 2010-02-26T05:00:00Z 2010-03-30T03:59:59Z 2011-06-11T17:16:40Z 2010-03963 0 0 0900006480aaf380

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 714.411ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API