documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "VA", document_type = "Other" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2011-VACO-0020-0001 | VA | Semiannual Regulatory Agenda - Spring 2011 VA-2011-VACO-0020 | Semiannual Regulatory Agenda - Spring 2011 | Other | 2011-07-07T04:00:00Z | 2011 | 7 | 2011-07-07T04:00:00Z | 2011-07-07T15:06:08Z | 0 | 0 | 0900006480ebb151 | |||
| VA-2011-VHA-0015-0002 | VA | AN86 - Final Rule - Payment or Reimbursement for Emergency Services for Nonservice- Connected Conditions in Non-VA Facilities VA-2011-VHA-0015 | Impact Analysis-AN86-Proposed Rule-Payment or Reimbursement for Emergency Services for Nonservice-Connected Conditions in Non-VA Facilities | Other | 2011-05-27T04:00:00Z | 2011 | 5 | 2011-05-27T04:00:00Z | 2016-10-31T15:03:00Z | 0 | 0 | 0900006480e32fdb | |||
| VA-2011-NCA-0014-0002 | VA | AN90 - Final Rule - Tribal Veterans Cemetery Grants VA-2011-NCA-0014 | Impact Analysis-AN90-Proposed Rule-Tribal Veterans Cemetery Grants | Other | 2011-05-20T04:00:00Z | 2011 | 5 | 2011-05-20T04:00:00Z | 2016-10-31T15:02:50Z | 0 | 0 | 0900006480db62df | |||
| VA-2011-VHA-0013-0002 | VA | AN80 - Final Rule - Medical Foster Homes VA-2011-VHA-0013 | Impact Analysis-AN80-Proposed Rule-Medical Foster Homes | Other | 2011-05-20T04:00:00Z | 2011 | 5 | 2011-05-20T04:00:00Z | 2016-10-31T15:02:49Z | 0 | 0 | 0900006480db62dd | |||
| VA-2011-VHA-0012-0002 | VA | AN94 - Interim Final Rule - Caregivers Program VA-2011-VHA-0012 | Impact Analysis-AN94-Interim Final Rule-Caregivers Program | Other | 2011-05-05T04:00:00Z | 2011 | 5 | 2011-05-05T04:00:00Z | 2016-10-31T15:02:17Z | 0 | 0 | 0900006480c40268 | |||
| VA-2011-VBA-0011-0002 | VA | AN28 - Final Rule - Dental Conditions VA-2011-VBA-0011 | Impact Analysis-AN28-Proposed Rule-Dental Conditions | Other | 2011-03-25T04:00:00Z | 2011 | 3 | 2011-03-25T04:00:00Z | 2011-06-11T15:54:55Z | 0 | 0 | 0900006480c10700 | |||
| VA-2010-VACO-0024-0003 | VA | AN43 - FInal Rule - U.S. Paralympics Monthly Assistance Allowance VA-2010-VACO-0024 | Impact Analysis-AN43-Final Rule-U.S. Paralympics Monthly Assistance Allowance | Other | 2011-03-16T04:00:00Z | 2011 | 3 | 2011-03-16T04:00:00Z | 2011-06-11T15:54:26Z | 0 | 0 | 0900006480c09209 | |||
| VA-2010-VHA-0007-0004 | VA | AN59 - Proposed Rule - Update to NFPA 101, Life Safety Code, for State Home Facilities VA-2010-VHA-0007 | Impact Analysis on AN59 - Final Rule | Other | 2011-03-02T05:00:00Z | 2011 | 3 | 2011-03-02T05:00:00Z | 2011-06-11T15:54:36Z | 0 | 0 | 0900006480bfd7cb | |||
| VA-2010-VHA-0014-0006 | VA | AN41 - Proposed Rule - Hospital and Outpatient Care for Veterans Released From Incarceration to Transitional Housing VA-2010-VHA-0014 | Impact Analysis on AN41 - Final Rule | Other | 2011-03-02T05:00:00Z | 2011 | 3 | 2011-03-02T05:00:00Z | 2011-06-11T15:54:44Z | 0 | 0 | 0900006480bfd29e | |||
| VA-2011-VBA-0004-0009 | VA | AN64 - Final Rule - Clothing Allowance VA-2011-VBA-0004 | Impact Analysis on AN64-Proposed Rule | Other | 2011-03-01T05:00:00Z | 2011 | 3 | 2011-03-01T05:00:00Z | 2011-06-11T15:54:53Z | 0 | 0 | 0900006480bfbc46 |
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;