documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "ED-2013-ICCD-0093" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- ED 9
| 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-0093-0011 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Forms and Instructions (60-Day FRN) | Supporting & Related Material | Form | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-27T20:52:54Z | 0 | 0 | 09000064813e6867 | |||
| ED-2013-ICCD-0093-0006 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Agency Information Collection Activities; Submission to the Office of Management and Budget for Review and Approval; Comment Request; Program for International Student Assessments (PISA) Validation Study | Notice | General Notice | 2013-09-16T04:00:00Z | 2013 | 9 | 2013-09-16T04:00:00Z | 2013-10-17T03:59:59Z | 2013-09-23T01:02:57Z | 2013-22473 | 0 | 0 | 0900006481425351 |
| ED-2013-ICCD-0093-0008 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Forms and Instructions | Supporting & Related Material | Form | 2013-09-16T04:00:00Z | 2013 | 9 | 2013-09-16T13:50:13Z | 0 | 0 | 0900006481425b09 | |||
| ED-2013-ICCD-0093-0007 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Supporting Statements | Supporting & Related Material | ICR Supporting Statement | 2013-09-16T04:00:00Z | 2013 | 9 | 2013-09-16T13:50:13Z | 0 | 0 | 0900006481425b04 | |||
| ED-2013-ICCD-0093-0005 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Supporting Statements (60-Day FRN) | Supporting & Related Material | ICR Supporting Statement | 2013-09-09T04:00:00Z | 2013 | 9 | 2013-09-09T19:11:03Z | 0 | 0 | 09000064813e6866 | |||
| ED-2013-ICCD-0093-0004 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Supporting Statements (60-Day FRN) | Supporting & Related Material | 2013-08-30T00:00:00Z | 2013 | 8 | 2013-09-09T19:12:12Z | 0 | 1 | 09000064813d2aa6 | ||||
| ED-2013-ICCD-0093-0003 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Forms and Instructions | Supporting & Related Material | Form | 2013-07-17T04:00:00Z | 2013 | 7 | 2013-08-30T15:44:34Z | 0 | 0 | 090000648136a867 | |||
| ED-2013-ICCD-0093-0001 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Agency Information Collection Activities; Comment Request; Program for International Student Assessments (PISA) Validation Study | Notice | 60 Day Proposed Information Collection | 2013-07-17T04:00:00Z | 2013 | 7 | 2013-07-17T04:00:00Z | 2013-09-17T03:59:59Z | 2013-08-30T15:55:38Z | 2013-17119 | 0 | 0 | 090000648136a865 |
| ED-2013-ICCD-0093-0002 | ED | Program for International Student Assessments (PISA) Validation Study ED-2013-ICCD-0093 | Supporting Statements | Supporting & Related Material | 2013-07-17T00:00:00Z | 2013 | 7 | 2013-08-30T15:52:36Z | 0 | 1 | 090000648136a866 |
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;