documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USCG-2020-0069" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 6
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2020-0069-0012 | USCG | None USCG-2020-0069 | Environmental Planning and Historic Preservation Decision Support System | Supporting & Related Material | 2022-11-07T05:00:00Z | 2022 | 11 | 2022-11-07T11:36:33Z | 0 | 0 | 090000648548c854 | ||||
| USCG-2020-0069-0011 | USCG | None USCG-2020-0069 | Pilots’ Medical Certificate Validity Period | Rule | 2022-11-04T04:00:00Z | 2022 | 11 | 2022-11-04T15:23:43Z | 2022-23339 | 0 | 0 | 0900006485488328 | |||
| USCG-2020-0069-0010 | USCG | None USCG-2020-0069 | DHS Record of Environmental Consideration (REC) for Categorically Excluded Actions under NEPA | Supporting & Related Material | 2022-03-24T04:00:00Z | 2022 | 3 | 2022-03-24T14:41:18Z | 0 | 0 | 0900006484fde8f5 | ||||
| USCG-2020-0069-0006 | USCG | None USCG-2020-0069 | COAST GUARD NATIONAL ENVIRONMENTAL POLICY ACT RECORD OF ENVIRONMENTAL CONSIDERATION FOR CATEGORICALLY EXCLUDED ACTIONS | Supporting & Related Material | 2021-09-13T04:00:00Z | 2021 | 9 | 2021-09-22T18:03:15Z | 0 | 0 | 0900006484d79f7e | ||||
| USCG-2020-0069-0002 | USCG | None USCG-2020-0069 | COAST GUARD NATIONAL ENVIRONMENTAL POLICY ACT RECORD OF ENVIRONMENTAL CONSIDERATION FOR CATEGORICALLY EXCLUDED ACTIONS | Supporting & Related Material | 2021-08-30T04:00:00Z | 2021 | 8 | 2021-08-30T15:31:46Z | 0 | 0 | 0900006484cb2a34 | ||||
| USCG-2020-0069-0001 | USCG | None USCG-2020-0069 | Pilots’ Medical Certificate Validity Period | Proposed Rule | 2021-08-27T04:00:00Z | 2021 | 8 | 2021-08-27T04:00:00Z | 2021-10-27T03:59:59Z | 2021-10-27T01:00:45Z | 2021-17806 | 0 | 0 | 0900006484cab892 |
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;