documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "VA-2018-VACO-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2018-VACO-0012-0010 | VA | AQ27 - Proposed Rule - Release of Information From Department of Veterans Affairs’ Records VA-2018-VACO-0012 | AQ27-Final Rule-Release of Information from Department of Veterans Affairs' Records_Correction; FR Doc. #2019-07271 | Rule | 2019-04-12T04:00:00Z | 2019 | 4 | 2019-04-12T12:21:46Z | 2019-07271 | 0 | 0 | 0900006483b89f0e | |||
| VA-2018-VACO-0012-0009 | VA | AQ27 - Proposed Rule - Release of Information From Department of Veterans Affairs’ Records VA-2018-VACO-0012 | AQ27(F) RIA - Final (4-1-19)OGC- Release of Info from Dept of VA Records | Supporting & Related Material | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-02T12:20:53Z | 0 | 0 | 0900006483b51925 | ||||
| VA-2018-VACO-0012-0008 | VA | AQ27 - Proposed Rule - Release of Information From Department of Veterans Affairs’ Records VA-2018-VACO-0012 | AQ27 - Final Rule - Release of Information from Department of Veterans Affairs Records | Rule | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-04-01T12:08:41Z | 2019-06101 | 0 | 0 | 0900006483b510f6 | ||
| VA-2018-VACO-0012-0002 | VA | AQ27 - Proposed Rule - Release of Information From Department of Veterans Affairs’ Records VA-2018-VACO-0012 | AQ27(P) Impact Analysis (2-15-18) Release of Info from VA Records | Supporting & Related Material | 2018-04-05T04:00:00Z | 2018 | 4 | 2018-04-06T12:35:38Z | 0 | 0 | 090000648309784c | ||||
| VA-2018-VACO-0012-0001 | VA | AQ27 - Proposed Rule - Release of Information From Department of Veterans Affairs’ Records VA-2018-VACO-0012 | AQ27 - Proposed Rule - Release of Information from Records | Proposed Rule | 2018-04-05T04:00:00Z | 2018 | 4 | 2018-04-05T04:00:00Z | 2018-06-05T03:59:59Z | 2018-04-07T01:03:11Z | 2018-06097 | 0 | 0 | 0900006483097731 |
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;