documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "AMS", document_type = "Notice" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-2005-0047-0001 | AMS | Notice of Program Continuation AMS-2005-0047 | Notice of Program Continuation | Notice | 2005-12-02T05:00:00Z | 2005 | 12 | 2005-12-02T05:00:00Z | 2008-01-07T22:36:33Z | E5-06787 | 0 | 0 | 09000064800ea5a3 | ||
| AMS-2005-0046-0001 | AMS | Recommendations of Advisory Committee on Universal Cotton Standards AMS-2005-0046 | Recommendations of Advisory Committee on Universal Cotton Standards | Notice | 2005-12-02T05:00:00Z | 2005 | 12 | 2005-12-02T05:00:00Z | 2008-01-07T22:36:28Z | E5-06781 | 0 | 0 | 09000064800ea58f | ||
| AMS-2005-0043-0001 | AMS | Notice of Request for Extension and Revision of a Currently Approved Information Collection AMS-2005-0043 | Notice of Request for Extension and Revision of a Currently Approved Information Collection | Notice | 2005-11-28T05:00:00Z | 2005 | 11 | 2005-11-28T05:00:00Z | 2008-01-07T22:36:34Z | 05-23328 | 0 | 0 | 09000064800e4b6d | ||
| AMS-2005-0037-0001 | AMS | Notice of Meeting of the National Organic Standards Board AMS-2005-0037 | Notice of Meeting of the National Organic Standards Board | Notice | 2005-11-03T05:00:00Z | 2005 | 11 | 2005-11-03T05:00:00Z | 2008-01-07T22:36:22Z | 05-22045 | 0 | 0 | 090000648009a5fb | ||
| AMS-2005-0032-0001 | AMS | United States Standards for Grades of Sweet Peppers AMS-2005-0032 | United States Standards for Grades of Sweet Peppers | Notice | 2005-10-18T04:00:00Z | 2005 | 10 | 2005-10-18T04:00:00Z | 2008-01-07T22:36:30Z | 05-20860 | 0 | 0 | 090000648009430a | ||
| AMS-2005-0031-0001 | AMS | Notice of Request for Extension and Revision of a Currently Approved Information Collection AMS-2005-0031 | Notice of Request for Extension and Revision of a Currently Approved Information Collection | Notice | 2005-10-18T04:00:00Z | 2005 | 10 | 2005-10-18T04:00:00Z | 2008-01-07T22:36:34Z | 05-20861 | 0 | 0 | 09000064800941e8 | ||
| AMS-2005-0024-0001 | AMS | United States Standards for Grades of Dewberries and Blackberries AMS-2005-0024 | United States Standards for Grades of Dewberries and Blackberries | Notice | 2005-10-06T04:00:00Z | 2005 | 10 | 2005-10-06T04:00:00Z | 2008-01-07T22:36:34Z | 05-20095 | 0 | 0 | 090000648008fb1b | ||
| AMS-2005-0023-0001 | AMS | United States Standards for Grades of Fresh Asparagus AMS-2005-0023 | United States Standards for Grades of Fresh Asparagus | Notice | 2005-10-06T04:00:00Z | 2005 | 10 | 2005-10-06T04:00:00Z | 2008-01-07T22:36:32Z | 05-20091 | 0 | 0 | 090000648008f93f |
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;