documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "AMS-LP-19-0093" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, comment_end_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-LP-19-0093-0021 | AMS | Lamb Promotion, Research, and Information Order; Activity Changes AMS-LP-19-0093 | Lamb Promotion, Research, and Information Order: Activity Changes | Rule | Final Rule | 2021-12-22T05:00:00Z | 2021 | 12 | 2021-12-22T05:00:00Z | 2022-07-28T14:49:25Z | 2021-27467 | 0 | 0 | 0900006484ee0a99 | |
| AMS-LP-19-0093-0018 | AMS | Lamb Promotion, Research, and Information Order; Activity Changes AMS-LP-19-0093 | Lamb Promotion, Research, and Information Order; Activity Changes; Comment Period Reopened | Proposed Rule | Extension of Comment Period | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T04:00:00Z | 2021-07-07T03:59:59Z | 2021-07-07T01:00:43Z | 2021-09642 | 0 | 0 | 0900006484ad856f |
| AMS-LP-19-0093-0014 | AMS | Lamb Promotion, Research, and Information Order; Activity Changes AMS-LP-19-0093 | Lamb Promotion, Research, and Information Order; Activity Changes | Proposed Rule | Reopening of Comment Period | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2021-03-25T03:59:59Z | 2021-03-25T01:01:11Z | 2021-03470 | 0 | 0 | 0900006484a466b5 |
| AMS-LP-19-0093-0006 | AMS | Lamb Promotion, Research, and Information Order; Activity Changes AMS-LP-19-0093 | Lamb Promotion, Research, and Information Order; Correction | Proposed Rule | Correction | 2020-11-09T05:00:00Z | 2020 | 11 | 2020-11-09T05:00:00Z | 2020-12-05T04:59:59Z | 2020-12-05T02:01:04Z | 2020-24754 | 0 | 0 | 0900006484953653 |
| AMS-LP-19-0093-0001 | AMS | Lamb Promotion, Research, and Information Order; Activity Changes AMS-LP-19-0093 | Lamb Promotion, Research, and Information Order; Activity Changes | Proposed Rule | Request for Comment | 2020-10-05T04:00:00Z | 2020 | 10 | 2020-10-05T04:00:00Z | 2020-12-05T04:59:59Z | 2020-12-05T02:00:53Z | 2020-20523 | 0 | 0 | 09000064848ce43c |
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;