home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

10 rows where docket_id = "NOAA-NMFS-2017-0014" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: posted_month, posted_date (date), comment_start_date (date), last_modified (date)

posted_year 1

  • 2017 10

document_type 1

  • Rule 10

agency_id 1

  • NOAA 10
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-2017-0014-0010 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Gulf Gray Triggerfish; Commercial Accountability Measure and Closure Rule   2017-11-13T05:00:00Z 2017 11 2017-11-13T05:00:00Z   2017-11-13T14:09:34Z 2017-24519 0 0 0900006482c6a19d
NOAA-NMFS-2017-0014-0009 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: King Mackerel in the Gulf of Mexico Western Zone; Commercial Accountability Measure and Closure Rule   2017-10-11T04:00:00Z 2017 10 2017-10-11T04:00:00Z   2017-10-12T17:07:13Z 2017-21908 0 0 0900006482bbb69b
NOAA-NMFS-2017-0014-0006 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2017 Commercial Accountability Measure and Closure for Gulf of Mexico Greater Amberjack Rule   2017-06-20T04:00:00Z 2017 6 2017-06-20T04:00:00Z   2017-06-23T11:52:00Z 2017-12746 0 0 09000064826f5d2c
NOAA-NMFS-2017-0014-0008 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Revised 2017 Recreational Fishing Season for Red Snapper Private Angling Component in Gulf of Mexico Rule   2017-06-19T04:00:00Z 2017 6 2017-06-19T04:00:00Z   2017-06-28T12:12:07Z 2017-12735 0 0 09000064826ed092
NOAA-NMFS-2017-0014-0007 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Red Snapper Management Measures; Compliance with Court Order Rule   2017-06-07T04:00:00Z 2017 6 2017-06-07T04:00:00Z   2017-06-23T19:29:48Z 2017-11804 0 0 090000648269fd24
NOAA-NMFS-2017-0014-0005 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic: 2016-2017 Commercial Accountability Measure and Closure for King Mackerel in Western Zone of the Gulf of Mexico Rule   2017-05-22T04:00:00Z 2017 5 2017-05-22T04:00:00Z   2017-05-22T12:40:51Z 2017-10251 0 0 09000064825f41b9
NOAA-NMFS-2017-0014-0004 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: Reopening of Commercial Sector in Western, Northern, and Southern (Gillnet) Zones for King Mackerel in Gulf of Mexico Rule   2017-05-08T04:00:00Z 2017 5 2017-05-08T04:00:00Z   2017-05-15T12:08:30Z 2017-09225 0 0 0900006482598702
NOAA-NMFS-2017-0014-0003 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; 2017 Recreational Fishing Seasons for Red Snapper in Gulf of Mexico Rule   2017-05-05T04:00:00Z 2017 5 2017-05-05T04:00:00Z   2017-05-15T12:07:49Z 2017-09096 0 0 09000064825938b8
NOAA-NMFS-2017-0014-0001 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Reef Fish Fishery of the Gulf of Mexico: 2017 Recreational Accountability Measures and Closure for Gulf of Mexico Greater Amberjack Rule   2017-03-21T04:00:00Z 2017 3 2017-03-21T04:00:00Z   2017-03-21T18:36:12Z 2017-05651 0 0 0900006482515925
NOAA-NMFS-2017-0014-0002 NOAA 2017 Gulf of Mexico Inseasons NOAA-NMFS-2017-0014 Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2017 Commercial Accountability Measure and Closure for Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic Rule   2017-02-27T05:00:00Z 2017 2 2017-02-27T05:00:00Z   2017-03-21T18:53:20Z 2017-03783 0 0 09000064824dd51b

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 522.28ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API