documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NCUA-2020-0116" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NCUA-2020-0116-0009 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | NASCUS Prepared Remarks 2021 NCUA Budget Briefing 120220 | Notice | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2020-12-16T16:56:43Z | 0 | 0 | 09000064849a1ee2 | |||
| NCUA-2020-0116-0008 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | CUNASchenkCommentsNCUABudget21 | Notice | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2020-12-16T16:55:31Z | 0 | 0 | 09000064849a1ee0 | |||
| NCUA-2020-0116-0003 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | 2021-2022 NCUA Proposed Budget - 12.10.2020 | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:09:52Z | 0 | 0 | 09000064849a0485 | |||
| NCUA-2020-0116-0005 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | CUA-NCUA Budget letter | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:10:23Z | 0 | 0 | 09000064849a0487 | |||
| NCUA-2020-0116-0004 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | comment-budg2020-20191203VPantea | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:10:11Z | 0 | 0 | 09000064849a0486 | |||
| NCUA-2020-0116-0006 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | CUNAComments | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:10:38Z | 0 | 0 | 09000064849a0488 | |||
| NCUA-2020-0116-0002 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | 12-10-20 Indiana Credit Union League Comments on NCUA Draft 2021-2022 Budget Justification | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:09:37Z | 0 | 0 | 09000064849a0484 | |||
| NCUA-2020-0116-0007 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | OCUL Comment Letter - NCUA Budget 2021-2022 - (12-11-2020) | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T20:11:00Z | 0 | 0 | 09000064849a0489 | |||
| NCUA-2020-0116-0001 | NCUA | Staff Draft 2021-2022 Budget Justification NCUA-2020-0116 | Staff Draft 2021-2022 Budget Justification | Notice | 2020-11-19T05:00:00Z | 2020 | 11 | 2020-11-19T05:00:00Z | 2021-04-20T01:00:14Z | 2020-25546 | 0 | 0 | 0900006484968642 |
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;