documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "AMS-FV-11-0069" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-FV-11-0069-0080 | AMS | Paper Research, Promotion, Consumer Information Order AMS-FV-11-0069 | Paper and Paper-Based Packaging Promotion, Research and Information Order | Rule | Final Rule | 2014-01-22T05:00:00Z | 2014 | 1 | 2014-01-22T05:00:00Z | 2014-01-22T19:24:09Z | 2014-01002 | 0 | 0 | 0900006481519ce0 | |
| AMS-FV-11-0069-0079 | AMS | Paper Research, Promotion, Consumer Information Order AMS-FV-11-0069 | Paper and Paper-Based Packaging Promotion, Research and Information Order; Referendum Procedures | Rule | 2013-09-16T04:00:00Z | 2013 | 9 | 2013-09-16T04:00:00Z | 2013-09-16T13:38:46Z | 2013-22328 | 0 | 0 | 0900006481425925 | ||
| AMS-FV-11-0069-0078 | AMS | Paper Research, Promotion, Consumer Information Order AMS-FV-11-0069 | Paper and Paper-Based Packaging Promotion, Research and Information Order | Proposed Rule | 2013-09-16T04:00:00Z | 2013 | 9 | 2013-09-16T04:00:00Z | 2013-09-16T13:37:49Z | 2013-22330 | 0 | 0 | 09000064814259e7 | ||
| AMS-FV-11-0069-0002 | AMS | Paper Research, Promotion, Consumer Information Order AMS-FV-11-0069 | Referendum Procedures: Paper and Paper-Based Packaging Promotion, Research and Information Order | Proposed Rule | 2013-01-02T05:00:00Z | 2013 | 1 | 2013-01-02T05:00:00Z | 2013-03-05T04:59:59Z | 2013-03-05T03:01:37Z | 2012-30915 | 0 | 0 | 09000064811a1e36 | |
| AMS-FV-11-0069-0001 | AMS | Paper Research, Promotion, Consumer Information Order AMS-FV-11-0069 | Paper and Paper-Based Packaging Promotion, Research and Information Order | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-01-02T05:00:00Z | 2013 | 1 | 2013-01-02T05:00:00Z | 2013-03-05T04:59:59Z | 2013-12-02T14:26:40Z | 2012-30923 | 0 | 0 | 09000064811a1ebd |
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;