documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2010-0098" 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 3
agency_id 1
- NOAA 8
| 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-2010-0098-0100 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Fish and Fish Product Import Provisions of the Marine Mammal Protection Act | Rule | 2016-08-15T04:00:00Z | 2016 | 8 | 2016-08-15T04:00:00Z | 2016-08-30T16:22:44Z | 2016-19158 | 0 | 0 | 09000064821757d1 | ||
| NOAA-NMFS-2010-0098-0036 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | DRAFT EA_ RIR_IRFA MMPA Import Rule Clearance Final Version with Appendices | Supporting & Related Material | 2015-08-11T04:00:00Z | 2015 | 8 | 2015-08-11T13:34:03Z | 0 | 0 | 0900006481c02ef0 | ||||
| NOAA-NMFS-2010-0098-0035 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Fish and Fish Product Import Provisions of the Marine Mammal Protection Act | Proposed Rule | 2015-08-11T04:00:00Z | 2015 | 8 | 2015-08-11T04:00:00Z | 2015-11-10T04:59:59Z | 2015-11-11T02:30:47Z | 2015-19231 | 0 | 0 | 0900006481c033b8 | |
| NOAA-NMFS-2010-0098-0034 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Comment from Irene Lopez | Proposed Rule | 2010-09-21T04:00:00Z | 2010 | 9 | 2010-09-21T04:00:00Z | 2011-05-27T13:28:16Z | 0 | 0 | 0900006480b545e3 | |||
| NOAA-NMFS-2010-0098-0033 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Greece Comments | Proposed Rule | 2010-09-21T04:00:00Z | 2010 | 9 | 2010-09-21T04:00:00Z | 2011-05-27T13:28:16Z | 0 | 0 | 0900006480b545e2 | |||
| NOAA-NMFS-2010-0098-0032 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Comment from Franz Hall, Jamaica government | Proposed Rule | 2010-09-14T04:00:00Z | 2010 | 9 | 2010-09-14T04:00:00Z | 2011-05-27T13:28:16Z | 0 | 0 | 0900006480b4f01a | |||
| NOAA-NMFS-2010-0098-0002 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act | Proposed Rule | 2010-07-01T04:00:00Z | 2010 | 7 | 2010-07-01T04:00:00Z | 2010-08-31T03:59:59Z | 2011-06-11T15:18:05Z | 2010-16066 | 0 | 0 | 0900006480b0ff68 | |
| NOAA-NMFS-2010-0098-0001 | NOAA | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act NOAA-NMFS-2010-0098 | Implementation of Fish and Fish Product Import Provisions of the Marine Mammal Protection Act | Proposed Rule | 2010-04-30T04:00:00Z | 2010 | 4 | 2010-04-30T04:00:00Z | 2010-06-30T03:59:59Z | 2011-06-11T15:18:05Z | 2010-10158 | 0 | 0 | 0900006480ae43a3 |
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;