documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "VA-2020-VBA-0020" 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)
document_type 3
agency_id 1
- VA 6
| 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-2020-VBA-0020-0020 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | AQ53(F) RIA to publish (3.15.23) Servicemembers' Group Life Insurance Traumatic Injury Protection Program Amendments | Supporting & Related Material | 2023-03-15T04:00:00Z | 2023 | 3 | 2023-03-15T12:36:37Z | 0 | 0 | 09000064857ab069 | ||||
| VA-2020-VBA-0020-0019 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | AQ53-Final Rule-Servicemembers' Group Life Insurance Traumatic Injury Protection Program Amendments | Rule | 2023-03-15T04:00:00Z | 2023 | 3 | 2023-03-15T12:34:32Z | 2023-05069 | 0 | 0 | 09000064857ab2d4 | |||
| VA-2020-VBA-0020-0013 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | AQ53-SNPRM-Servicemembers' Group Life Insurance Traumatic Injury Protection Program Amendments | Proposed Rule | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-23T04:00:00Z | 2021-05-25T03:59:59Z | 2021-05-26T01:00:45Z | 2021-05852 | 0 | 0 | 0900006484a753b4 | |
| VA-2020-VBA-0020-0014 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | AQ53 SNPRM Impact Analysis | Supporting & Related Material | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-23T16:45:46Z | 0 | 0 | 0900006484a75711 | ||||
| VA-2020-VBA-0020-0002 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | AQ53(P) RIA for Publication (8.17.20) | Supporting & Related Material | 2020-08-19T04:00:00Z | 2020 | 8 | 2020-08-19T12:08:09Z | 0 | 0 | 090000648481072b | ||||
| VA-2020-VBA-0020-0001 | VA | AQ53-Proposed Rule-Servicemembers’ Group Life Insurance Traumatic Injury Protection Program Amendments VA-2020-VBA-0020 | Servicemembers' Group Life Insurance Traumatic Injury Protection Program Amendments | Proposed Rule | 2020-08-19T04:00:00Z | 2020 | 8 | 2020-08-19T04:00:00Z | 2020-10-20T03:59:59Z | 2020-10-21T01:01:57Z | 2020-15981 | 0 | 0 | 0900006484810695 |
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;