documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2014-0080" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NMFS-2014-0080-0006 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | NOA ListServ - Final Atlantic HMS Management-Based Research Needs and Priorities_11-20-2014 | Supporting & Related Material | 2014-11-20T05:00:00Z | 2014 | 11 | 2014-11-20T16:20:57Z | 0 | 0 | 0900006481939fe2 | ||||
| NOAA-NMFS-2014-0080-0008 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | 79 FR 69097 | Supporting & Related Material | 2014-11-20T05:00:00Z | 2014 | 11 | 2014-11-20T16:20:58Z | 0 | 0 | 0900006481939fe0 | ||||
| NOAA-NMFS-2014-0080-0007 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | Final Atlantic HMS Management-Based Research Needs and Priorities_11-14-2014 | Supporting & Related Material | 2014-11-20T05:00:00Z | 2014 | 11 | 2014-11-20T16:20:58Z | 0 | 0 | 0900006481939fe1 | ||||
| NOAA-NMFS-2014-0080-0003 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | 79 FR 39367 | Notice | 2014-07-11T04:00:00Z | 2014 | 7 | 2014-07-10T04:00:00Z | 2014-08-12T03:59:59Z | 2014-07-27T01:03:15Z | 0 | 0 | 09000064817a2001 | ||
| NOAA-NMFS-2014-0080-0001 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | Atlantic HMS Management-Based Research Needs and Priorities_final_070214 | Supporting & Related Material | 2014-07-10T04:00:00Z | 2014 | 7 | 2014-07-10T12:51:03Z | 0 | 0 | 090000648179cc16 | ||||
| NOAA-NMFS-2014-0080-0002 | NOAA | Atlantic Highly Migratory Species (HMS) Management-Based Research Needs and Priorities Document NOAA-NMFS-2014-0080 | NOA - Atlantic HMS Management-Based Research Needs and Priorities_7-8-2014 | Supporting & Related Material | 2014-07-10T04:00:00Z | 2014 | 7 | 2014-07-10T12:51:07Z | 0 | 0 | 090000648179cc17 |
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;