documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "ED-2015-ICCD-0091" 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)
| 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-2015-ICCD-0091-0010 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Forms and Instructions | Supporting & Related Material | Form | 2015-09-15T04:00:00Z | 2015 | 9 | 2015-09-15T11:46:20Z | 0 | 0 | 0900006481c6eac0 | |||
| ED-2015-ICCD-0091-0009 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Supporting Statements | Supporting & Related Material | ICR Supporting Statement | 2015-09-15T04:00:00Z | 2015 | 9 | 2015-09-15T11:46:10Z | 0 | 0 | 0900006481c6eabf | |||
| ED-2015-ICCD-0091-0008 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Agency Information Collection Activities; Submission to the Office of Management and Budget for Review and Approval; Comment Request; Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection | Notice | 30 Day Proposed Information Collection | 2015-09-15T04:00:00Z | 2015 | 9 | 2015-09-15T04:00:00Z | 2015-10-16T03:59:59Z | 2015-09-18T01:30:37Z | 2015-23111 | 0 | 0 | 0900006481c6eabd |
| ED-2015-ICCD-0091-0007 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Forms and Instructions | Supporting & Related Material | Form | 2015-08-11T04:00:00Z | 2015 | 8 | 2015-08-11T20:45:30Z | 0 | 0 | 0900006481c1889e | |||
| ED-2015-ICCD-0091-0001 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Agency Information Collection Activities; Comment Request; Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection | Notice | 60 Day Proposed Information Collection | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T04:00:00Z | 2015-09-15T03:59:59Z | 2015-07-15T01:30:36Z | 2015-17217 | 0 | 0 | 0900006481b82dbd |
| ED-2015-ICCD-0091-0004 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Supporting Statements | Supporting & Related Material | ICR Supporting Statement | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T19:54:43Z | 0 | 0 | 0900006481b8500d | |||
| ED-2015-ICCD-0091-0003 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Forms and Instructions | Supporting & Related Material | 2015-07-14T00:00:00Z | 2015 | 7 | 2015-07-14T19:50:01Z | 0 | 1 | 0900006481b82c66 | ||||
| ED-2015-ICCD-0091-0005 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Forms and Instructions | Supporting & Related Material | 2015-07-14T00:00:00Z | 2015 | 7 | 2015-08-11T20:45:14Z | 0 | 1 | 0900006481b85010 | ||||
| ED-2015-ICCD-0091-0002 | ED | Early Childhood Longitudinal Study, Kindergarten Class of 2010-11 (ECLS-K:2011) Spring Fifth-Grade National Data Collection ED-2015-ICCD-0091 | Supporting Statements | Supporting & Related Material | 2015-07-14T00:00:00Z | 2015 | 7 | 2015-07-14T19:49:52Z | 0 | 1 | 0900006481b82dbf |
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;