documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "VA-2017-VACO-0008" 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 7
| 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-2017-VACO-0008-0012 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82 - Final rule; correction - Revise and Streamline VA Acquisition Regulation to Adhere to Federal Acquisition Regulation Principles; Correction | Rule | 2018-03-13T04:00:00Z | 2018 | 3 | 2018-03-13T12:38:04Z | 2018-04985 | 0 | 0 | 0900006483006187 | |||
| VA-2017-VACO-0008-0011 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82 - Final Rule; correction - Revise and Streamline VA Acquisition Regulation to Adhere to Federal Acquisition Regulation Principles; Correction | Rule | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-13T12:39:15Z | 2018-04883 | 0 | 0 | 0900006482ffd9f8 | |||
| VA-2017-VACO-0008-0009 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82 - Final Rule - Revising and Streamlining VA Acquisition Regulations To Adhere to Federal Acquisition Regulation Principles | Rule | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-21T13:48:46Z | 2018-03164 | 0 | 0 | 0900006482f4ca36 | |||
| VA-2017-VACO-0008-0010 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82(F)-Impact Analysis-OALC-VAAR Case 2014-V002;Revise and Streamline VAAR to Adhere to FAR Principles | Supporting & Related Material | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-22T13:08:36Z | 0 | 0 | 0900006482f4d04a | ||||
| VA-2017-VACO-0008-0004 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82 - Proposed rule; correction - Revise and Streamline VA Acquisition Regulation to Adhere to Federal Acquisition Regulation Principles; Correction | Proposed Rule | 2017-04-04T04:00:00Z | 2017 | 4 | 2017-04-04T04:00:00Z | 2017-05-13T03:59:59Z | 2017-05-12T01:00:12Z | 2017-06578 | 0 | 0 | 09000064825399bd | |
| VA-2017-VACO-0008-0002 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82(P)-Impact Analysis OALC-VAAR Case 2014-V002;Revise and Streamline VAAR | Supporting & Related Material | 2017-03-13T04:00:00Z | 2017 | 3 | 2017-03-13T14:14:41Z | 0 | 0 | 0900006482503228 | ||||
| VA-2017-VACO-0008-0001 | VA | AP82 - Proposed Rule - Revise and Streamline VA Acquisition Regulation To Adhere to Federal Acquisition Regulation Principles (VAAR Case 2014–V002—Parts 816, 828) VA-2017-VACO-0008 | AP82- Proposed Rule - Revise and Streamline Acquisition Regulation to Adhere to Federal Acquisition Regulation Principles | Proposed Rule | 2017-03-13T04:00:00Z | 2017 | 3 | 2017-03-13T04:00:00Z | 2017-05-13T03:59:59Z | 2017-05-13T01:01:52Z | 2017-04877 | 0 | 0 | 0900006482502ee8 |
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;