documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "AMS-NOP-17-0057" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AMS-NOP-17-0057-1582 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | Transcripts _ Spring 2018 NOSB meeting | Supporting & Related Material | Notice of Availability | 2018-05-31T04:00:00Z | 2018 | 5 | 2018-05-31T17:25:10Z | 0 | 0 | 0900006483319102 | |||
| AMS-NOP-17-0057-1580 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | NOP Update_Spring2018_Tucker | Supporting & Related Material | Notice of Availability | 2018-05-31T04:00:00Z | 2018 | 5 | 2018-05-31T17:25:04Z | 0 | 0 | 0900006483318c00 | |||
| AMS-NOP-17-0057-1581 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | Panelists' presentations_Import panel - NOSB April 2018 | Supporting & Related Material | Notice of Availability | 2018-05-31T04:00:00Z | 2018 | 5 | 2018-05-31T17:25:06Z | 0 | 0 | 0900006483319101 | |||
| AMS-NOP-17-0057-1583 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | Voting sheet Apr 2018_final | Supporting & Related Material | Notice of Availability | 2018-05-31T04:00:00Z | 2018 | 5 | 2018-05-31T17:25:11Z | 0 | 0 | 0900006483318e0d | |||
| AMS-NOP-17-0057-1575 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | NOSB proposals & Discussion Docs April 2018 | Supporting & Related Material | Notice of Availability | 2018-04-10T04:00:00Z | 2018 | 4 | 2018-04-10T13:59:48Z | 0 | 0 | 0900006483018c10 | |||
| AMS-NOP-17-0057-1576 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | NOSB Work Agenda 2018 | Supporting & Related Material | Notice of Availability | 2018-04-10T04:00:00Z | 2018 | 4 | 2018-04-10T13:59:49Z | 0 | 0 | 0900006483018c11 | |||
| AMS-NOP-17-0057-1574 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | April 2018 Agenda_Tentative | Supporting & Related Material | Notice of Availability | 2018-04-10T04:00:00Z | 2018 | 4 | 2018-04-10T13:59:46Z | 0 | 0 | 0900006483018c0f | |||
| AMS-NOP-17-0057-0001 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | Meeting of the National Organic Standards Board | Proposed Rule | Request for Comment | 2018-01-17T05:00:00Z | 2018 | 1 | 2018-01-17T05:00:00Z | 2018-04-05T03:59:59Z | 2018-04-26T01:03:37Z | 2017-28170 | 0 | 0 | 0900006482e18bec |
| AMS-NOP-17-0057-0002 | AMS | Meeting of the National Organic Standards Board (NOSB) April 2018 AMS-NOP-17-0057 | 2018 April NOSB Simplified Agenda | Supporting & Related Material | Notice of Availability | 2018-01-17T05:00:00Z | 2018 | 1 | 2018-01-17T21:40:41Z | 0 | 0 | 0900006482e21d2f |
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;