documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "ED", document_type = "Proposed Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2006-0432-0001 | ED | Semi-annual agenda ED-2006-0432 | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2008-01-08T21:02:52Z | 06-07687 | 0 | 0 | 09000064801eaa46 | ||
| ED-2006-0428-0001 | ED | Office of Postsecondary Education; Notice of Intent To Establish Negotiated Rulemaking Committees Under Title IV of the Higher Education Act of 1965, as Amended ED-2006-0428 | Office of Postsecondary Education; Notice of Intent To Establish Negotiated Rulemaking Committees Under Title IV of the Higher Education Act of 1965, as Amended | Proposed Rule | 2006-12-08T05:00:00Z | 2006 | 12 | 2006-12-08T05:00:00Z | 2008-01-08T21:03:57Z | E6-20931 | 0 | 0 | 09000064801e9d3c | ||
| ED-2006-0373-0001 | ED | Measuring Educational Gain in the National Reporting System for Adult Education ED-2006-0373 | Measuring Educational Gain in the National Reporting System for Adult Education | Proposed Rule | 2006-10-18T04:00:00Z | 2006 | 10 | 2006-10-18T04:00:00Z | 2006-11-18T04:59:59Z | 2008-01-08T21:04:16Z | 06-08709 | 0 | 0 | 09000064801d6c59 | |
| ED-2006-0305-0001 | ED | Magnet Schools Assistance Program ED-2006-0305 | Magnet Schools Assistance Program | Proposed Rule | 2006-08-22T04:00:00Z | 2006 | 8 | 2006-08-22T04:00:00Z | 2006-09-22T03:59:59Z | 2008-01-08T21:04:01Z | E6-13795 | 0 | 0 | 09000064801bc13e | |
| ED-2006-0301-0001 | ED | Postsecondary education: Academic Competitiveness Grant and National Science and Mathematics Access to Retain Talent Grant Programs; grant and loan programs amendments ED-2006-0301 | Postsecondary education: Academic Competitiveness Grant and National Science and Mathematics Access to Retain Talent Grant Programs; grant and loan programs amendments | Proposed Rule | 2006-08-18T04:00:00Z | 2006 | 8 | 2006-08-18T04:00:00Z | 2008-01-08T21:04:01Z | E6-13642 | 0 | 0 | 09000064801b9f60 | ||
| ED-2006-0184-0001 | ED | State-Administered Programs ED-2006-0184 | State-Administered Programs | Proposed Rule | 2006-05-15T04:00:00Z | 2006 | 5 | 2006-05-15T04:00:00Z | 2011-06-11T17:16:24Z | E6-07346 | 0 | 0 | 090000648017223c | ||
| ED-2006-0159-0001 | ED | State-Administered Programs ED-2006-0159 | State-Administered Programs | Proposed Rule | 2006-04-27T04:00:00Z | 2006 | 4 | 2006-04-27T04:00:00Z | 2006-05-31T03:59:59Z | 2011-06-11T17:16:24Z | E6-06355 | 0 | 0 | 0900006480166763 | |
| ED-2006-0152-0001 | ED | Semi-annual agenda ED-2006-0152 | Semi-annual agenda | Proposed Rule | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-24T04:00:00Z | 2008-01-08T21:03:51Z | 06-02035 | 0 | 0 | 0900006480163c5e |
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;