documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "USCG-2005-22612" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 5
| 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-2005-22612-0014 | USCG | Long Range Identification and Tracking of Ships USCG-2005-22612 | Long Range Identification and Tracking of Ships | Rule | Federal Register Publication | 2008-08-20T04:00:00Z | 2008 | 8 | 2008-08-20T04:00:00Z | 2017-03-10T22:20:14Z | E8-19307 | 0 | 0 | 09000064806cf0a3 | |
| USCG-2005-22612-0012 | USCG | Long Range Identification and Tracking of Ships USCG-2005-22612 | Long Range Identification and Tracking of Ships | Rule | Federal Register Publication | 2008-04-29T04:00:00Z | 2008 | 4 | 2008-04-29T04:00:00Z | 2017-03-10T22:20:01Z | E8-09182 | 0 | 0 | 0900006480539f60 | |
| USCG-2005-22612-0011 | USCG | Long Range Identification and Tracking of Ships USCG-2005-22612 | U.S. DHS/CG - Categorical Exculusion Determination for Long-Range Identification and Tracking of Ships | Supporting & Related Material | 2008-04-28T04:00:00Z | 2008 | 4 | 2008-04-28T16:10:27Z | 0 | 0 | 09000064805385a0 | ||||
| USCG-2005-22612-0004 | USCG | Long Range Identification and Tracking of Ships USCG-2005-22612 | Environmental Checklist | Supporting & Related Material | 2007-10-26T04:00:00Z | 2007 | 10 | 2007-10-26T19:36:41Z | 0 | 0 | 09000064802ff9b3 | ||||
| USCG-2005-22612-0001 | USCG | Long Range Identification and Tracking of Ships USCG-2005-22612 | Long Range Identification and Tracking of Ships | Notice | Notice | 2007-10-03T04:00:00Z | 2007 | 10 | 2007-10-03T04:00:00Z | 2008-01-03T04:59:59Z | 2017-03-10T22:24:33Z | 07-04895 | 0 | 0 | 09000064802f75e5 |
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;