documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "AMS-AMS-15-0087" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-AMS-15-0087-0004 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-09-28T04:00:00Z | 2016 | 9 | 2016-09-28T04:00:00Z | 2016-10-31T16:44:51Z | 2016-23319 | 0 | 0 | 090000648227b340 | |
| AMS-AMS-15-0087-0015 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 30 Day Proposed Information Collection | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T04:00:00Z | 2020-01-27T15:07:05Z | 2016-19826 | 0 | 0 | 09000064821842cc | |
| AMS-AMS-15-0087-0007 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-07-26T04:00:00Z | 2016 | 7 | 2016-07-26T04:00:00Z | 2016-09-27T03:59:59Z | 2017-05-10T16:56:12Z | 2016-17702 | 0 | 0 | 09000064821221f2 |
| AMS-AMS-15-0087-0006 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-06-28T04:00:00Z | 2016 | 6 | 2016-06-28T04:00:00Z | 2017-05-10T16:55:26Z | 2016-15199 | 0 | 0 | 0900006482074206 | |
| AMS-AMS-15-0087-0005 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-06-02T04:00:00Z | 2016 | 6 | 2016-06-02T04:00:00Z | 2016-07-06T03:59:59Z | 2017-05-10T16:53:46Z | 2016-12991 | 0 | 0 | 0900006482008d77 |
| AMS-AMS-15-0087-0014 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-05-27T04:00:00Z | 2016 | 5 | 2016-05-27T04:00:00Z | 2016-06-28T03:59:59Z | 2019-06-11T15:11:56Z | 2016-12525 | 0 | 0 | 0900006481ff8eab |
| AMS-AMS-15-0087-0013 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Irish Potatoes Grown in Colorado; CFR Correction | Rule | Correction | 2016-05-26T04:00:00Z | 2016 | 5 | 2016-05-26T04:00:00Z | 2019-06-11T15:10:59Z | 2016-12582 | 0 | 0 | 0900006481ff338d | |
| AMS-AMS-15-0087-0012 | AMS | AMS Federal Register Notices 2015 AMS-AMS-15-0087 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | General Notice | 2016-04-20T04:00:00Z | 2016 | 4 | 2016-04-20T04:00:00Z | 2016-05-21T03:59:59Z | 2019-06-11T15:10:23Z | 2016-09115 | 0 | 0 | 0900006481f7804c |
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;