documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NCUA_FRDOC_0001" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NCUA_FRDOC_0001-0016 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Regulatory Reform Agenda | Proposed Rule | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2019-01-07T12:36:28Z | 2018-27473 | 0 | 0 | 09000064839be39b | ||
| NCUA_FRDOC_0001-0015 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-12-17T05:00:00Z | 2018 | 12 | 2018-12-17T05:00:00Z | 2019-02-06T12:40:39Z | 2018-27355 | 0 | 0 | 090000648399ce7c | ||
| NCUA_FRDOC_0001-0014 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-12-17T05:00:00Z | 2018 | 12 | 2020-07-28T15:21:24Z | 2018-27209 | 0 | 0 | 090000648399ce76 | |||
| NCUA_FRDOC_0001-0013 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-12-10T05:00:00Z | 2018 | 12 | 2018-12-10T05:00:00Z | 2019-02-12T12:26:17Z | 2018-26819 | 0 | 0 | 090000648397363a | ||
| NCUA_FRDOC_0001-0011 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2018-12-20T04:59:59Z | 2018-11-19T13:35:43Z | 2018-25140 | 0 | 0 | 09000064838e68ba | |
| NCUA_FRDOC_0001-0010 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Loan Participation | Notice | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2019-01-19T04:59:59Z | 2018-11-19T13:36:04Z | 2018-25141 | 0 | 0 | 09000064838e67e9 | |
| NCUA_FRDOC_0001-0009 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-11-13T05:00:00Z | 2018 | 11 | 2018-11-13T05:00:00Z | 2018-11-13T12:47:39Z | 2018-24836 | 0 | 0 | 09000064838ceaab | ||
| NCUA_FRDOC_0001-0006 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-10-18T04:00:00Z | 2018 | 10 | 2018-10-18T04:00:00Z | 2018-10-18T12:02:49Z | 2018-22847 | 0 | 0 | 0900006483803b69 | ||
| NCUA_FRDOC_0001-0004 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-10-15T04:00:00Z | 2018 | 10 | 2018-10-15T04:00:00Z | 2018-10-15T12:39:54Z | 2018-22500 | 0 | 0 | 09000064837d91b3 | ||
| NCUA_FRDOC_0001-0005 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-10-15T04:00:00Z | 2018 | 10 | 2018-10-15T04:00:00Z | 2018-10-15T12:40:21Z | 2018-22438 | 0 | 0 | 09000064837d91f8 |
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;