documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "VA-2020-VBA-0018" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_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-2020-VBA-0018-0129 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | 2020 August Meeting Summary | Supporting & Related Material | 2024-04-29T04:00:00Z | 2024 | 4 | 2024-04-29T15:25:16Z | 0 | 0 | 0900006486522770 | ||||
| VA-2020-VBA-0018-0130 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | December 2015 Petition for Rulemaking | Supporting & Related Material | 2024-04-29T04:00:00Z | 2024 | 4 | 2024-04-29T15:25:41Z | 0 | 0 | 0900006486522771 | ||||
| VA-2020-VBA-0018-0124 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95(F) RIA to publish (4.26.24) Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge | Supporting & Related Material | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T12:39:35Z | 0 | 0 | 09000064864f2630 | ||||
| VA-2020-VBA-0018-0128 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95(F) COD - Listening Session Transcript 10.6.21 | Supporting & Related Material | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T13:28:33Z | 0 | 0 | 09000064864f32f2 | ||||
| VA-2020-VBA-0018-0123 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95-Final Rule-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge | Rule | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T12:34:46Z | 2024-09012 | 0 | 0 | 09000064864f27a7 | |||
| VA-2020-VBA-0018-0127 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95(F) COD - Listening Session transcript 10.5.21 | Supporting & Related Material | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T13:27:49Z | 0 | 0 | 09000064864f32f1 | ||||
| VA-2020-VBA-0018-0126 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95(F) DoD Memo signed regarding VA Regulatory Bars | Supporting & Related Material | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T13:27:02Z | 0 | 0 | 09000064864f32aa | ||||
| VA-2020-VBA-0018-0125 | VA | AQ95-Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge VA-2020-VBA-0018 | AQ95(F) Data Slide (Final)- Update and Clarify Regulatory Bars to Benefits Based on Character of Discharge | Supporting & Related Material | 2024-04-26T04:00:00Z | 2024 | 4 | 2024-04-26T12:42:32Z | 0 | 0 | 09000064864f2631 |
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;