documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2004-17697" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 7
| 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-2004-17697-0047 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | Ex Parte Communication Memorandum | Supporting & Related Material | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T14:45:41Z | 0 | 0 | 09000064811751f5 | ||||
| USCG-2004-17697-0035 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | Ex Parte Communication (Notice of Inquiry) | Supporting & Related Material | 2012-01-25T05:00:00Z | 2012 | 1 | 2012-01-25T19:29:04Z | 0 | 0 | 0900006480fa3893 | ||||
| USCG-2004-17697-0034 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | Claims Procedures under Oil Pollution Act of 1990 (Federal Register Publication) | Notice | Notice of Change | 2011-11-01T04:00:00Z | 2011 | 11 | 2011-11-01T04:00:00Z | 2012-01-31T04:59:59Z | 2014-08-27T19:21:23Z | 2011-28189 | 0 | 0 | 0900006480f63c68 |
| USCG-2004-17697-0033 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | NOI Questions Matrix | Supporting & Related Material | 2011-10-06T04:00:00Z | 2011 | 10 | 2011-10-06T18:40:54Z | 0 | 0 | 0900006480f4d922 | ||||
| USCG-2004-17697-0031 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | NOI Questions Matrix | Supporting & Related Material | 2011-10-05T00:00:00Z | 2011 | 10 | 2011-10-06T18:42:12Z | 0 | 1 | 0900006480f4ba29 | ||||
| USCG-2004-17697-0030 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | 1992 Comments Matrix | Supporting & Related Material | 2011-10-05T00:00:00Z | 2011 | 10 | 2011-10-06T18:24:42Z | 0 | 1 | 0900006480f4ba25 | ||||
| USCG-2004-17697-0001 | USCG | Claims Procedure Under the Oil Pollution Act of 1990 USCG-2004-17697 | Interim Rule - Claims Procedures Under the Oil Pollution Act of 1990 | Rule | Federal Register Publication | 2011-04-20T04:00:00Z | 2011 | 4 | 2011-04-20T04:00:00Z | 2014-08-27T18:19:02Z | 0 | 0 | 0900006480c3069e |
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;