documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2020-0332" 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)
| 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-0332-0006 | USCG | None USCG-2020-0332 | MFR_DSS-USCG-2020-9804 (Oxford Funathlon Swim) | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T17:58:27Z | 0 | 0 | 0900006484eb08a8 | ||||
| USCG-2020-0332-0004 | USCG | None USCG-2020-0332 | MFR_DSS_USCG_2019_7452 (Flying Point Park Outboard Regatta) | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T17:56:56Z | 0 | 0 | 0900006484eb0886 | ||||
| USCG-2020-0332-0005 | USCG | None USCG-2020-0332 | MFR_DSS_USCG_2020_9549 (Maryland Freedom Swim) | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T17:57:37Z | 0 | 0 | 0900006484eb0888 | ||||
| USCG-2020-0332-0003 | USCG | None USCG-2020-0332 | DHS Record of Environmental Consideration (REC) for Categorically Excluded Actions under NEPA | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T17:55:04Z | 0 | 0 | 0900006484eb08a7 | ||||
| USCG-2020-0332-0007 | USCG | None USCG-2020-0332 | DSS-USCG-2021-11676_Something in the Water_REC_Final | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T18:00:00Z | 0 | 0 | 0900006484eb08aa | ||||
| USCG-2020-0332-0009 | USCG | None USCG-2020-0332 | MFR_DSS_USCG_2020_10217 (Washington DC Sharkfest Swim) | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T18:02:24Z | 0 | 0 | 0900006484eb08a9 | ||||
| USCG-2020-0332-0008 | USCG | None USCG-2020-0332 | MFR_USCG-2021-12630 (Thunder on the Choptank) | Supporting & Related Material | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T18:01:01Z | 0 | 0 | 0900006484eb0887 | ||||
| USCG-2020-0332-0002 | USCG | None USCG-2020-0332 | Special Local Regulations; Recurring Marine Events Within the Fifth Coast Guard District | Rule | 2021-11-08T05:00:00Z | 2021 | 11 | 2021-11-08T14:30:28Z | 2021-24066 | 0 | 0 | 0900006484e35357 | |||
| USCG-2020-0332-0001 | USCG | None USCG-2020-0332 | Special Local Regulations; Recurring Marine Events and Within the Fifth Coast Guard District | Proposed Rule | 2021-06-03T04:00:00Z | 2021 | 6 | 2021-06-03T04:00:00Z | 2021-07-07T03:59:59Z | 2021-06-03T14:29:02Z | 2021-11570 | 0 | 0 | 0900006484b512cc |
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;