documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOD-2023-OS-0063" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- DOD 8
| 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-2023-OS-0063-0377 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Cybersecurity Maturity Model Certification Program | Rule | 2024-10-15T04:00:00Z | 2024 | 10 | 2024-10-15T04:00:00Z | 2024-10-15T13:04:31Z | 2024-22905 | 0 | 0 | 09000064867ce630 | ||
| DOD-2023-OS-0063-0375 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2024-06-21T04:00:00Z | 2024 | 6 | 2024-06-21T04:00:00Z | 2024-07-23T03:59:59Z | 2024-07-23T01:01:07Z | 2024-13468 | 0 | 0 | 09000064865c2a21 | |
| DOD-2023-OS-0063-0374 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2024-06-21T04:00:00Z | 2024 | 6 | 2024-06-21T04:00:00Z | 2024-07-23T03:59:59Z | 2024-07-02T01:00:59Z | 2024-13464 | 0 | 0 | 09000064865c290f | |
| DOD-2023-OS-0063-0157 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Informational Video: Cybersecurity Maturity Model Certification Program | Proposed Rule | 2024-02-21T05:00:00Z | 2024 | 2 | 2024-02-21T05:00:00Z | 2024-02-21T19:26:28Z | 2024-03460 | 0 | 0 | 0900006486421a93 | ||
| DOD-2023-OS-0063-0155 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Video Transcript | Supporting & Related Material | 2024-02-20T05:00:00Z | 2024 | 2 | 2024-02-20T21:49:25Z | 0 | 0 | 090000648641eac9 | ||||
| DOD-2023-OS-0063-0001 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | Cybersecurity Maturity Model Certification Program | Proposed Rule | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2024-02-27T04:59:59Z | 2024-03-01T02:00:40Z | 2023-27280 | 0 | 0 | 090000648635985d | |
| DOD-2023-OS-0063-0003 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | RIA_32CFR_CMMC | Supporting & Related Material | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T13:41:51Z | 0 | 0 | 09000064863559af | ||||
| DOD-2023-OS-0063-0002 | DOD | Cybersecurity Maturity Model Certification (CMMC) Program DOD-2023-OS-0063 | IRFA_32CFR_CMMC | Supporting & Related Material | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T13:41:31Z | 0 | 0 | 09000064863559ae |
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;