documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "VA-2022-VBA-0018" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| VA-2022-VBA-0018-0003 | VA | AR53-Proposed Rule-National Service Life Insurance— Veterans Affairs Life Insurance (VALife) Program Amendments VA-2022-VBA-0018 | National Service Life Insurance: Veterans Affairs Life Insurance Program Amendments | Rule | 2022-12-01T05:00:00Z | 2022 | 12 | 2022-12-01T13:04:56Z | 2022-25426 | 0 | 0 | 090000648550e8bb | |||
| VA-2022-VBA-0018-0004 | VA | AR53-Proposed Rule-National Service Life Insurance— Veterans Affairs Life Insurance (VALife) Program Amendments VA-2022-VBA-0018 | AR53(F) RIA to publish | Supporting & Related Material | 2022-12-01T05:00:00Z | 2022 | 12 | 2022-12-02T13:46:39Z | 0 | 0 | 090000648550e3e1 | ||||
| VA-2022-VBA-0018-0001 | VA | AR53-Proposed Rule-National Service Life Insurance— Veterans Affairs Life Insurance (VALife) Program Amendments VA-2022-VBA-0018 | AR53-Proposed Rule-National Service Life Insurance: Veterans Affairs Life Insurance Program Amendments | Proposed Rule | 2022-07-14T04:00:00Z | 2022 | 7 | 2022-07-14T04:00:00Z | 2022-09-13T03:59:59Z | 2022-07-14T12:52:09Z | 2022-14942 | 0 | 0 | 09000064851c9b51 | |
| VA-2022-VBA-0018-0002 | VA | AR53-Proposed Rule-National Service Life Insurance— Veterans Affairs Life Insurance (VALife) Program Amendments VA-2022-VBA-0018 | AR53(P) RIA for publication (7.14.22) InsSvc-VA Life.doc | Supporting & Related Material | 2022-07-14T04:00:00Z | 2022 | 7 | 2022-07-15T13:22:16Z | 0 | 0 | 09000064851c9db6 |
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;