documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "VA-2021-VBA-0010" 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 5
| 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-2021-VBA-0010-0005 | VA | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change VA-2021-VBA-0010 | AR04-Final Rule - Vocational Rehabilitation and Employment Program: Name Change; Correction | Rule | 2022-02-24T05:00:00Z | 2022 | 2 | 2022-02-24T13:46:09Z | 2022-03838 | 0 | 0 | 0900006484f9f611 | |||
| VA-2021-VBA-0010-0004 | VA | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change VA-2021-VBA-0010 | AR04(F) RIA to publish (2.16.22) VRE Name Change | Supporting & Related Material | 2022-02-16T05:00:00Z | 2022 | 2 | 2022-02-16T14:21:23Z | 0 | 0 | 0900006484f7f250 | ||||
| VA-2021-VBA-0010-0003 | VA | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change VA-2021-VBA-0010 | AR04-Final Rule- Vocational Rehabilitation and Employment Program: Name Change | Rule | 2022-02-16T05:00:00Z | 2022 | 2 | 2022-02-16T14:16:23Z | 2022-02492 | 0 | 0 | 0900006484f7ef14 | |||
| VA-2021-VBA-0010-0002 | VA | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change VA-2021-VBA-0010 | AR04 Impact Analysis-Vocational Rehabilitation and Employment (VR&E) Program: Name Change | Supporting & Related Material | 2021-05-20T04:00:00Z | 2021 | 5 | 2021-05-21T12:04:23Z | 0 | 0 | 0900006484b239d8 | ||||
| VA-2021-VBA-0010-0001 | VA | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change VA-2021-VBA-0010 | AR04-Proposed Rule-Vocational Rehabilitation and Employment Program: Name Change | Proposed Rule | 2021-05-20T04:00:00Z | 2021 | 5 | 2021-05-20T04:00:00Z | 2021-07-20T03:59:59Z | 2021-05-20T13:26:27Z | 2021-08555 | 0 | 0 | 0900006484b236a6 |
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;