documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "ED-2020-SCC-0154" 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 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-2020-SCC-0154-0023 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Forms and Instruments | Supporting & Related Material | Form | 2021-02-19T05:00:00Z | 2021 | 2 | 2021-02-19T14:18:47Z | 0 | 0 | 0900006484a42a10 | |||
| ED-2020-SCC-0154-0019 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Agency Information Collection Activities; Submission to the Office of Management and Budget for Review and Approval; Comment Request; Quarterly Budget and Expenditure Reporting Under CARES Act Sections 18004(a)(1) Institutional Portion, 18004(a)(2), and 18004(a)(3) | Notice | 30 Day Proposed Information Collection | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2021-01-21T04:59:59Z | 2021-01-21T02:01:03Z | 2020-28000 | 0 | 0 | 09000064849ae806 |
| ED-2020-SCC-0154-0020 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Supporting Statements | Supporting & Related Material | ICR Supporting Statement | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T14:51:14Z | 0 | 0 | 09000064849af3d4 | |||
| ED-2020-SCC-0154-0021 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Forms and Instruments | Supporting & Related Material | 2020-12-21T00:00:00Z | 2020 | 12 | 2021-02-19T20:43:39Z | 0 | 1 | 09000064849af3d6 | ||||
| ED-2020-SCC-0154-0015 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T13:21:36Z | 0 | 0 | 090000648494aa4e | |||
| ED-2020-SCC-0154-0016 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Forms and Instruments | Supporting & Related Material | Form | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T13:30:29Z | 0 | 0 | 090000648494aa50 | |||
| ED-2020-SCC-0154-0001 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Agency Information Collection Activities; Comment Request; Quarterly Budget and Expenditure Reporting Under CARES Act Sections 18004(a)(1) Institutional Portion,18004(a)(2), and 18004(a)(3) | Notice | 60 Day Proposed Information Collection | 2020-09-28T04:00:00Z | 2020 | 9 | 2020-09-28T04:00:00Z | 2020-11-28T04:59:59Z | 2020-11-28T02:02:24Z | 2020-21355 | 0 | 0 | 090000648485f7b9 |
| ED-2020-SCC-0154-0002 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Supporting Statement | Supporting & Related Material | 2020-09-28T00:00:00Z | 2020 | 9 | 2020-11-04T13:19:32Z | 0 | 1 | 090000648488da58 | ||||
| ED-2020-SCC-0154-0003 | ED | HEERF Quarterly Report ED-2020-SCC-0154 | Forms and Instructions | Supporting & Related Material | 2020-09-28T00:00:00Z | 2020 | 9 | 2020-11-04T13:19:42Z | 0 | 1 | 090000648488da5a |
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;