documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "AMS-AMS-15-0087" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-AMS-15-0087-0011 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Walnuts Grown in California; CFR Correction, | Rule | Correction | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2019-06-11T15:08:59Z | 2015-33016 | 0 | 0 | 0900006481dde9b2 | |
| AMS-AMS-15-0087-0010 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Dairy Promotion Program; CFR Correction, | Rule | Correction | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2019-06-11T15:08:25Z | 2015-33018 | 0 | 0 | 0900006481dde8e6 | |
| AMS-AMS-15-0087-0009 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals, | Notice | General Notice | 2015-12-11T05:00:00Z | 2015 | 12 | 2015-12-11T05:00:00Z | 2016-01-12T04:59:59Z | 2019-06-11T15:07:26Z | 2015-31298 | 0 | 0 | 0900006481d9d761 |
| AMS-AMS-15-0087-0008 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T04:00:00Z | 2015-11-24T04:59:59Z | 2019-06-11T15:06:30Z | 2015-26891 | 0 | 0 | 0900006481ce4bae |
| AMS-AMS-15-0087-0003 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 30 Day Proposed Information Collection | 2015-09-18T04:00:00Z | 2015 | 9 | 2015-09-18T04:00:00Z | 2015-10-20T03:59:59Z | 2016-10-03T13:00:46Z | 2015-23404 | 0 | 0 | 0900006481c7e7d2 |
| AMS-AMS-15-0087-0002 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Charter Renewals: Fruit and Vegetable Industry Advisory Committee | Notice | General Notice | 2015-07-27T04:00:00Z | 2015 | 7 | 2015-07-27T04:00:00Z | 2016-10-03T12:57:51Z | 2015-18317 | 0 | 0 | 0900006481ba6765 |
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;