documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOD", document_type = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOD-2020-OS-0094-0001 | DOD | Privacy Act of 1974; Implementation (DoD 0005) DOD-2020-OS-0094 | Privacy Act; Implementation | Proposed Rule | 2020-12-28T05:00:00Z | 2020 | 12 | 2020-12-28T05:00:00Z | 2021-02-27T04:59:59Z | 2020-12-29T13:45:13Z | 2020-26547 | 0 | 0 | 09000064849cc5ae | |
| DOD-2020-OS-0084-0001 | DOD | Privacy Act of 1974; Implementation (DoD 0003) DOD-2020-OS-0084 | Privacy Act; Implementation | Proposed Rule | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2021-02-17T04:59:59Z | 2020-12-17T02:02:47Z | 2020-27095 | 0 | 0 | 09000064849a1ba2 | |
| DOD-2016-OS-0115-0001 | DOD | Unlawful Discrimination on the Basis of Disability in Programs or Activities Receiving Federal Financial Assistance from, or Conducted by, the DoD DOD-2016-OS-0115 | Nondiscrimination on the Basis of Disability in Programs or Activities Assisted or Conducted by the DoD and in Equal Access to Information and Communication Technology Used by DoD, and Procedures for Resolving Complaints | Proposed Rule | 2020-07-16T04:00:00Z | 2020 | 7 | 2020-07-16T04:00:00Z | 2020-09-15T03:59:59Z | 2020-09-16T01:01:27Z | 2020-12999 | 0 | 0 | 090000648477659c | |
| DOD-2019-OS-0069-0001 | DOD | DoD Freedom of Information Act (FOIA) Program (amendment) DOD-2019-OS-0069 | Freedom of Information Act Program; Amendment | Proposed Rule | 2020-07-02T04:00:00Z | 2020 | 7 | 2020-07-02T04:00:00Z | 2020-09-01T03:59:59Z | 2020-08-31T13:51:29Z | 2020-13608 | 0 | 0 | 0900006484721a1d | |
| DOD-2019-OS-0076-0001 | DOD | Voluntary Education Programs; Amendment DOD-2019-OS-0076 | Voluntary Education Programs | Proposed Rule | 2020-04-15T04:00:00Z | 2020 | 4 | 2020-04-15T04:00:00Z | 2020-05-16T03:59:59Z | 2020-05-17T01:00:45Z | 2020-07601 | 0 | 0 | 09000064844a82cd | |
| DOD-2020-OS-0002-0008 | DOD | 2020 documents NOT taking public comment DOD-2020-OS-0002 | Federal Acquisition Regulations: Construction Contract Administration | Proposed Rule | 2020-04-01T04:00:00Z | 2020 | 4 | 2020-07-28T15:21:22Z | 2020-05866 | 0 | 0 | 090000648447e10e | |||
| DOD-2020-OS-0002-0007 | DOD | 2020 documents NOT taking public comment DOD-2020-OS-0002 | Federal Acquisition Regulation: Standards in Information and Communication Technology | Proposed Rule | 2020-03-31T04:00:00Z | 2020 | 3 | 2020-07-28T15:21:20Z | 2020-05867 | 0 | 0 | 090000648447a918 |
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;