documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "AMS-FV-10-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-FV-10-0008-0571 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Christmas Tree Promotion, Research, and Information Order: Lifting of the Stay | Rule | Final Rule | 2014-04-07T04:00:00Z | 2014 | 4 | 2014-04-07T04:00:00Z | 2014-04-07T13:45:22Z | 2014-07684 | 0 | 0 | 09000064816a2f53 | |
| AMS-FV-10-0008-0570 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Christmas Tree Promotion, Research, and Information Order; Stay of Implementation | Rule | Final Rule | 2011-11-17T05:00:00Z | 2011 | 11 | 2011-11-17T05:00:00Z | 2011-11-17T13:29:54Z | 2011-29713 | 0 | 0 | 0900006480f6e5a9 | |
| AMS-FV-10-0008-0568 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Christmas Tree Promotion, Research, and Information Order; Referendum Procedures | Rule | 2011-11-08T05:00:00Z | 2011 | 11 | 2011-11-08T05:00:00Z | 2011-11-08T13:56:24Z | 2011-28807 | 0 | 0 | 0900006480f6814f | ||
| AMS-FV-10-0008-0569 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Christmas Tree Promotion, Research, and Information Order | Rule | 2011-11-08T05:00:00Z | 2011 | 11 | 2011-11-08T05:00:00Z | 2011-11-08T13:57:36Z | 2011-28798 | 0 | 0 | 0900006480f681ef | ||
| AMS-FV-10-0008-0501 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Proposed Christmas Tree Promotion, Research, and Information Order; Extension of Comment Period | Proposed Rule | N/A | 2011-02-22T05:00:00Z | 2011 | 2 | 2011-02-22T05:00:00Z | 2011-03-10T04:59:59Z | 2011-06-11T16:37:31Z | 2011-03934 | 0 | 0 | 0900006480bf44ca |
| AMS-FV-10-0008-0001 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Proposed Christmas Tree Promotion, Research, and Information Order | Proposed Rule | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2011-02-08T04:59:59Z | 2011-06-11T16:37:31Z | 2010-28038 | 0 | 0 | 0900006480b8409c | |
| AMS-FV-10-0008-0003 | AMS | Christmas Tree Promotion, Research, and Information Order AMS-FV-10-0008 | Proposed Christmas Tree Promotion, Research, and Information Order; Referendum Procedures | Proposed Rule | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2011-02-08T04:59:59Z | 2011-06-11T16:37:31Z | 2010-28040 | 0 | 0 | 0900006480b84098 |
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;