documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "AMS-FV-14-0088" 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)
document_type 3
agency_id 1
- AMS 11
| 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-14-0088-0020 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | United States Standards for Grades of Processed Vegetables | Rule | Final Rule | 2019-04-19T04:00:00Z | 2019 | 4 | 2019-04-19T04:00:00Z | 2019-04-25T13:39:11Z | 2019-07899 | 0 | 0 | 0900006483bc4bcf | |
| AMS-FV-14-0088-0004 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Canned Lima Beans_DRAFT | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:57:27Z | 0 | 0 | 09000064836337d6 | |||
| AMS-FV-14-0088-0005 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Canned Mushroms_DRAFT | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:57:52Z | 0 | 0 | 09000064836337d7 | |||
| AMS-FV-14-0088-0008 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Green_Olives_Standard | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:59:14Z | 0 | 0 | 09000064836337da | |||
| AMS-FV-14-0088-0010 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Pickles_DRAFT | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T22:00:05Z | 0 | 0 | 09000064836337dc | |||
| AMS-FV-14-0088-0009 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Pickles Standard | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:59:44Z | 0 | 0 | 09000064836337db | |||
| AMS-FV-14-0088-0007 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Canned Mushrooms Standard | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:58:39Z | 0 | 0 | 09000064836337d8 | |||
| AMS-FV-14-0088-0006 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Green Olives_DRAFT | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:58:18Z | 0 | 0 | 09000064836337d9 | |||
| AMS-FV-14-0088-0002 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Request G. Arnold | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:56:25Z | 0 | 0 | 09000064836337a9 | |||
| AMS-FV-14-0088-0003 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | Canned Lima Beans Standards | Supporting & Related Material | Correction | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T21:56:58Z | 0 | 0 | 09000064836337d5 | |||
| AMS-FV-14-0088-0001 | AMS | United States Standards for Grades of Processed Vegetables AMS-FV-14-0088 | United States Standards for Grades: Processed Vegetables | Proposed Rule | Request for Comment | 2018-08-13T04:00:00Z | 2018 | 8 | 2018-08-13T04:00:00Z | 2018-10-13T03:59:59Z | 2018-10-12T01:07:33Z | 2018-17283 | 0 | 0 | 0900006483612aa1 |
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;