documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "AMS-DA-07-0059" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-DA-07-0059-0013 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Markeing Orders: Milk in the Appalachian, Florida, and Southeast Areas | Rule | Correction | 2014-05-09T04:00:00Z | 2014 | 5 | 2014-05-09T04:00:00Z | 2014-05-09T16:10:11Z | C1-2014-10037 | 0 | 0 | 09000064816ec9a7 | |
| AMS-DA-07-0059-0012 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Marketing Orders: Milk in the Appalachian, Florida, and Southeast Areas | Rule | Final Rule | 2014-05-02T04:00:00Z | 2014 | 5 | 2014-05-02T04:00:00Z | 2014-05-02T13:57:41Z | 2014-10037 | 0 | 0 | 09000064816dcc72 | |
| AMS-DA-07-0059-0011 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Amendments to Marketing Agreements, Orders: Milk in the Appalachian, Florida and Southeast Marketing Areas | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-03-07T05:00:00Z | 2014 | 3 | 2014-03-07T05:00:00Z | 2014-03-07T16:01:48Z | 2014-04692 | 0 | 0 | 09000064816278b0 | |
| AMS-DA-07-0059-0010 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Milk in the Appalachian and Southeast Marketing Areas; Correction | Rule | Correction | 2008-05-09T04:00:00Z | 2008 | 5 | 2008-05-09T04:00:00Z | 2008-05-09T14:15:11Z | 08-01239 | 0 | 0 | 09000064805570c0 | |
| AMS-DA-07-0059-0004 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Milk in the Appalachian, Florida and Southeast Marketing Areas; Interim Order Amending the Orders | Rule | Interim Final Rule | 2008-03-17T04:00:00Z | 2008 | 3 | 2008-03-17T04:00:00Z | 2008-03-20T13:04:58Z | 08-01038 | 0 | 0 | 09000064803fa9f9 | |
| AMS-DA-07-0059-0003 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Partial Recommended Decision | Proposed Rule | N/A | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2008-04-30T03:59:59Z | 2008-04-29T11:05:07Z | E8-03846 | 0 | 0 | 09000064803d6e66 |
| AMS-DA-07-0059-0002 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Tentative Final Decision: Class I Price Adjustment and Pooling Provisions | Proposed Rule | N/A | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2008-04-30T03:59:59Z | 2008-04-29T11:05:49Z | 08-00881 | 0 | 0 | 09000064803d509d |
| AMS-DA-07-0059-0001 | AMS | Appalachian, Florida and Southeast: Pricing and Pooling Provisions AMS-DA-07-0059 | Hearing Notice | Proposed Rule | N/A | 2007-05-08T04:00:00Z | 2007 | 5 | 2007-05-08T04:00:00Z | 2008-01-07T22:36:30Z | E7-08802 | 0 | 0 | 0900006480237431 |
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;