documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "AMS-SC-19-0082" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-SC-19-0082-0005 | AMS | Walnuts Grown in California; Proposed Amendment to Marketing Order AMS-SC-19-0082 | Marketing Order: Walnuts Grown in California | Rule | Final Rule | 2021-03-29T04:00:00Z | 2021 | 3 | 2021-03-29T04:00:00Z | 2021-04-28T18:07:07Z | 2021-06207 | 0 | 0 | 0900006484a84cdd | |
| AMS-SC-19-0082-0004 | AMS | Walnuts Grown in California; Proposed Amendment to Marketing Order AMS-SC-19-0082 | Walnuts Grown in California: Secretary's Decision and Referendum Order on Amendments to Marketing Order No. 984 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-10-20T04:00:00Z | 2020 | 10 | 2020-10-20T04:00:00Z | 2020-11-04T13:16:02Z | 2020-22334 | 0 | 0 | 090000648491a5d5 | |
| AMS-SC-19-0082-0003 | AMS | Walnuts Grown in California; Proposed Amendment to Marketing Order AMS-SC-19-0082 | Marketing Order: Walnuts Grown in California | Proposed Rule | Request for Comment | 2020-08-05T04:00:00Z | 2020 | 8 | 2020-08-05T04:00:00Z | 2020-09-05T03:59:59Z | 2020-09-05T01:01:08Z | 2020-15135 | 0 | 0 | 09000064847d70e6 |
| AMS-SC-19-0082-0002 | AMS | Walnuts Grown in California; Proposed Amendment to Marketing Order AMS-SC-19-0082 | Marketing Order: Walnuts Grown in California; Correction | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-04-10T04:00:00Z | 2020 | 4 | 2020-04-10T04:00:00Z | 2020-04-14T14:45:00Z | 2020-07508 | 0 | 0 | 0900006484499689 | |
| AMS-SC-19-0082-0001 | AMS | Walnuts Grown in California; Proposed Amendment to Marketing Order AMS-SC-19-0082 | Walnuts Grown in California: Hearing on Proposed Amendment of Marketing Order No.984 | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2020-02-11T05:00:00Z | 2020 | 2 | 2020-02-11T05:00:00Z | 2020-02-19T14:12:45Z | 2020-02387 | 0 | 0 | 090000648434e5e7 |
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;