documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2007-27022" 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 2
agency_id 1
- USCG 8
| 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-2007-27022-0013 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | FR: Revision of LNG and LHG Waterfront Facility General Requirements (Federal Register Publication) | Rule | Federal Register Publication | 2010-09-03T04:00:00Z | 2010 | 9 | 2010-09-03T04:00:00Z | 2017-03-10T22:20:56Z | 2010-22021 | 0 | 0 | 0900006480b44994 | |
| USCG-2007-27022-0012 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | ICR 1625-0049 OMB Approval | Supporting & Related Material | 2010-09-02T04:00:00Z | 2010 | 9 | 2012-03-24T19:32:21Z | 0 | 0 | 0900006480b4316f | ||||
| USCG-2007-27022-0011 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | CATEX (Categorical Exclusion Determination) and EC (Environmental Checklist) | Supporting & Related Material | 2010-07-16T04:00:00Z | 2010 | 7 | 2012-03-24T19:30:49Z | 0 | 0 | 0900006480b1a686 | ||||
| USCG-2007-27022-0010 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | FR: Revision of LNG and LHG Waterfront Facility General Requirements (Federal Register Publication) | Rule | Federal Register Publication | 2010-05-26T04:00:00Z | 2010 | 5 | 2010-05-26T04:00:00Z | 2017-03-10T22:20:45Z | 2010-12680 | 0 | 0 | 0900006480af4604 | |
| USCG-2007-27022-0008 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | Memorandum: Summary of Ex-Parte Communication | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T14:29:08Z | 0 | 0 | 09000064809f5adc | ||||
| USCG-2007-27022-0003 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | Marguerite P. Braun | Supporting & Related Material | 2009-05-26T00:00:00Z | 2009 | 5 | 2009-05-29T15:02:48Z | 0 | 1 | 09000064809af665 | ||||
| USCG-2007-27022-0001 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | NPRM: Revision of LNG and LHG Waterfront Facility General Requirements (Federal Register Publication) | Rule | Federal Register Publication | 2009-04-28T04:00:00Z | 2009 | 4 | 2009-04-28T04:00:00Z | 2009-06-30T03:59:59Z | 2017-03-10T22:20:28Z | E9-09639 | 0 | 0 | 090000648096e34e |
| USCG-2007-27022-0002 | USCG | Revision of LNG Facility Application Requirements USCG-2007-27022 | Environmental Checklist | Supporting & Related Material | 2009-04-28T04:00:00Z | 2009 | 4 | 2009-04-28T20:07:48Z | 0 | 0 | 090000648096de26 |
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;