documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "ED-2013-ICCD-0121" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- ED 11
| 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-2013-ICCD-0121-0037 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Instruments (30-D FRN) | Supporting & Related Material | Form | 2014-03-27T04:00:00Z | 2014 | 3 | 2014-03-27T17:53:33Z | 0 | 0 | 090000648168793b | |||
| ED-2013-ICCD-0121-0036 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Supporting Statements (30D FRN) | Supporting & Related Material | ICR Supporting Statement | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-05-05T18:44:04Z | 0 | 0 | 0900006481683d55 | |||
| ED-2013-ICCD-0121-0034 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Instruments (30D FRN) | Supporting & Related Material | 2014-03-26T00:00:00Z | 2014 | 3 | 2014-03-26T19:03:59Z | 0 | 1 | 09000064816829c8 | ||||
| ED-2013-ICCD-0121-0035 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Instruments (30D FRN) | Supporting & Related Material | 2014-03-26T00:00:00Z | 2014 | 3 | 2014-03-27T17:55:59Z | 0 | 1 | 0900006481683d5a | ||||
| ED-2013-ICCD-0121-0033 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Supporting Statements | Supporting & Related Material | 2014-03-25T00:00:00Z | 2014 | 3 | 2014-03-26T19:02:22Z | 0 | 1 | 090000648167c39c | ||||
| ED-2013-ICCD-0121-0030 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Agency Information Collection Activities; Submission to the Office of Management and Budget for Review and Approval; Comment Request; Highly Qualified Teachers Clearance | Notice | 30 Day Proposed Information Collection | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T04:00:00Z | 2014-04-19T03:59:59Z | 2014-04-19T01:04:43Z | 2014-05956 | 0 | 0 | 090000648166f5a2 |
| ED-2013-ICCD-0121-0031 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Supporting Statements | Supporting & Related Material | 2014-03-19T00:00:00Z | 2014 | 3 | 2014-03-25T13:06:16Z | 0 | 1 | 090000648166f5a4 | ||||
| ED-2013-ICCD-0121-0032 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Instruments | Supporting & Related Material | 2014-03-19T00:00:00Z | 2014 | 3 | 2014-03-26T17:18:12Z | 0 | 1 | 090000648166f641 | ||||
| ED-2013-ICCD-0121-0003 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Forms and Instructions | Supporting & Related Material | Form | 2013-09-12T04:00:00Z | 2013 | 9 | 2013-09-12T13:06:39Z | 0 | 0 | 09000064813f5ed4 | |||
| ED-2013-ICCD-0121-0001 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Agency Information Collection Activities; Comment Request; Highly Qualified Teachers Clearance | Notice | 60 Day Proposed Information Collection | 2013-09-12T04:00:00Z | 2013 | 9 | 2013-09-12T04:00:00Z | 2013-11-19T04:59:59Z | 2013-11-20T02:04:24Z | 2013-22196 | 0 | 0 | 09000064813f5ed2 |
| ED-2013-ICCD-0121-0002 | ED | Highly Qualified Teachers Clearance ED-2013-ICCD-0121 | Supporting Statements | Supporting & Related Material | ICR Supporting Statement | 2013-09-12T04:00:00Z | 2013 | 9 | 2013-09-12T13:06:38Z | 0 | 0 | 09000064813f5ed3 |
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;