documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2013-0181" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 6
| 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-2013-0181-0030 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery and Golden Crab Fishery of the South Atlantic, and Dolphin and Wahoo Fishery of the Atlantic | Rule | 2016-01-22T05:00:00Z | 2016 | 1 | 2016-01-22T05:00:00Z | 2016-01-22T13:57:16Z | 2016-01258 | 0 | 0 | 0900006481e287e6 | ||
| NOAA-NMFS-2013-0181-0023 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery and Golden Crab Fishery of the South Atlantic, and Dolphin and Wahoo Fishery of the Atlantic | Proposed Rule | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-09-29T04:00:00Z | 2015-10-30T03:59:59Z | 2015-10-28T01:30:44Z | 2015-24576 | 0 | 0 | 0900006481ca0fa2 | |
| NOAA-NMFS-2013-0181-0003 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery and Golden Crab Fishery of the South Atlantic, and Dolphin and Wahoo Fishery of the Atlantic | Proposed Rule | 2015-07-15T04:00:00Z | 2015 | 7 | 2015-07-15T04:00:00Z | 2015-09-15T03:59:59Z | 2015-09-15T01:30:30Z | 2015-17334 | 0 | 0 | 0900006481b86ae0 | |
| NOAA-NMFS-2013-0181-0004 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | Generic AM-Dolphin Allocation 20150225 FINAL | Supporting & Related Material | 2015-07-15T04:00:00Z | 2015 | 7 | 2015-07-15T13:32:12Z | 0 | 0 | 0900006481b864b9 | ||||
| NOAA-NMFS-2013-0181-0002 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | AM-DolphAllocationScopingDoc20140106 | Other | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2015-03-16T19:47:12Z | 0 | 0 | 0900006481539d79 | |||
| NOAA-NMFS-2013-0181-0001 | NOAA | Generic Accountability Measure and Dolphin Allocation Amendment NOAA-NMFS-2013-0181 | NOI Comp AM and Dolphin Allocation | Other | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-03-04T04:59:59Z | 2015-03-16T19:47:12Z | 0 | 0 | 0900006481537c5a |
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;