documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2014-0006" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-0006-0015 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | GUIDELINES FOR ECONOMIC REVIEW OF NATIONAL MARINE FISHERIES SERVICE REGULATORY ACTIONS 3-20-07 | Supporting & Related Material | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-18T17:23:00Z | 0 | 0 | 09000064819354ea | ||||
| NOAA-NMFS-2014-0006-0012 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | Fisheries of the Exclusive Economic Zone off Alaska: Monitoring and Enforcement; At-sea Scales Requirements | Rule | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-18T05:00:00Z | 2014-11-18T16:58:11Z | 2014-27081 | 0 | 0 | 090000648193576d | ||
| NOAA-NMFS-2014-0006-0014 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | Final RIR Rule to provide for more effective monitoring of at-sea-flow scales | Supporting & Related Material | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-18T17:22:32Z | 0 | 0 | 09000064819354e9 | ||||
| NOAA-NMFS-2014-0006-0013 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | Categorical Exclusion At-Sea-Scale | Supporting & Related Material | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-18T17:21:40Z | 0 | 0 | 09000064819354e8 | ||||
| NOAA-NMFS-2014-0006-0003 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | Jan 2014 DRAFT FOR SECRETARIAL REVIEW Rule to provide for more effective monitoring of at-sea flow scales Regulatory Impact Review | Supporting & Related Material | 2014-08-26T04:00:00Z | 2014 | 8 | 2014-08-29T21:05:29Z | 0 | 0 | 0900006481846864 | ||||
| NOAA-NMFS-2014-0006-0002 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | July 2014 Categorical Exclusion | Supporting & Related Material | 2014-08-26T04:00:00Z | 2014 | 8 | 2014-08-29T21:05:28Z | 0 | 0 | 0900006481846863 | ||||
| NOAA-NMFS-2014-0006-0001 | NOAA | Fisheries of the Exclusive Economic Zone Off Alaska; Monitoring and Enforcement; At-Sea Scales Requirements NOAA-NMFS-2014-0006 | Fisheries of the Exclusive Economic Zone off Alaska: Monitoring and Enforcement; At-sea Scales Requirements | Proposed Rule | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2014-09-03T03:59:59Z | 2014-09-03T01:07:22Z | 2014-18029 | 0 | 0 | 09000064817f15de |
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;