documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "USCG-2022-0289" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2022-0289-0010 | USCG | None USCG-2022-0289 | Image_Capsule | Supporting & Related Material | 2022-08-12T04:00:00Z | 2022 | 8 | 2022-08-12T14:23:30Z | 0 | 0 | 0900006485233fff | ||||
| USCG-2022-0289-0011 | USCG | None USCG-2022-0289 | Image_Capsule and Parachute | Supporting & Related Material | 2022-08-12T04:00:00Z | 2022 | 8 | 2022-08-12T14:24:00Z | 0 | 0 | 0900006485234000 | ||||
| USCG-2022-0289-0009 | USCG | None USCG-2022-0289 | DHS Record of Environmental Consideration (REC) for Categorically Excluded Actions under NEPA | Supporting & Related Material | 2022-08-12T04:00:00Z | 2022 | 8 | 2022-08-12T14:23:03Z | 0 | 0 | 0900006485233ffe | ||||
| USCG-2022-0289-0008 | USCG | None USCG-2022-0289 | Safety Zones in Reentry Sites; Jacksonville, Daytona, Cape Canaveral, Tampa, and Tallahassee, Florida | Rule | 2022-08-04T04:00:00Z | 2022 | 8 | 2022-08-04T13:20:26Z | 2022-16743 | 0 | 0 | 090000648520feae | |||
| USCG-2022-0289-0004 | USCG | None USCG-2022-0289 | Capsule and Parachute | Supporting & Related Material | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T13:35:22Z | 0 | 0 | 0900006485147eef | ||||
| USCG-2022-0289-0005 | USCG | None USCG-2022-0289 | Recovery Vessel 1 | Supporting & Related Material | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T13:35:27Z | 0 | 0 | 0900006485147eee | ||||
| USCG-2022-0289-0003 | USCG | None USCG-2022-0289 | Capsule | Supporting & Related Material | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T13:35:16Z | 0 | 0 | 0900006485147eed | ||||
| USCG-2022-0289-0006 | USCG | None USCG-2022-0289 | Recovery Vessel 2 | Supporting & Related Material | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T13:35:31Z | 0 | 0 | 0900006485147eec | ||||
| USCG-2022-0289-0001 | USCG | None USCG-2022-0289 | Safety Zones in Reentry Sites; Jacksonville, Daytona, Cape Canaveral, Tampa, and Tallahassee, Florida | Proposed Rule | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T04:00:00Z | 2022-07-14T03:59:59Z | 2022-06-29T01:00:33Z | 2022-12540 | 0 | 0 | 090000648515e59c | |
| USCG-2022-0289-0002 | USCG | None USCG-2022-0289 | DHS Record of Environmental Consideration (REC) for Categorically Excluded Actions under NEPA | Supporting & Related Material | 2022-06-13T04:00:00Z | 2022 | 6 | 2022-06-13T13:34:42Z | 0 | 0 | 0900006485148c9a |
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;