documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NOAA-NMFS-2007-0788" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NMFS-2007-0788-0001 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | List of Fisheries for 2008 | Rule | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T05:00:00Z | 2011-06-11T15:05:36Z | E7-23076 | 0 | 0 | 0900006480368a7c | ||
| NOAA-NMFS-2007-0788-0002 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | List of Fisheries for 1999 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:09Z | 0 | 0 | 0900006480367058 | ||||
| NOAA-NMFS-2007-0788-0004 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | List of Fisheries for 2006 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:11Z | 0 | 0 | 090000648036708b | ||||
| NOAA-NMFS-2007-0788-0003 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | List of Fisheries for 2005 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:10Z | 0 | 0 | 0900006480367081 | ||||
| NOAA-NMFS-2007-0788-0005 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | List of Fisheries for 2007 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:18Z | 0 | 0 | 0900006480367095 | ||||
| NOAA-NMFS-2007-0788-0008 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | GAMMS Workshop Report (Wade/Angliss, 1996) | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:20Z | 0 | 0 | 09000064803670a8 | ||||
| NOAA-NMFS-2007-0788-0011 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | SARs FR notices | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:22Z | 0 | 0 | 09000064803670c8 | ||||
| NOAA-NMFS-2007-0788-0009 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | SARs for 1996 FR | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:21Z | 0 | 0 | 09000064803670b0 | ||||
| NOAA-NMFS-2007-0788-0010 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | SARs for 2001 FR | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:21Z | 0 | 0 | 09000064803670bc | ||||
| NOAA-NMFS-2007-0788-0006 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | Final Rule Implementing MMPA section 118 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:19Z | 0 | 0 | 090000648036709d | ||||
| NOAA-NMFS-2007-0788-0007 | NOAA | Final List of Fisheries for 2008 NOAA-NMFS-2007-0788 | Proposed List of Fisheries for 2008 | Supporting & Related Material | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T13:35:20Z | 0 | 0 | 09000064803670a3 |
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;