documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "AMS-NOP-11-0009" 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)
document_type 3
agency_id 1
- AMS 6
| 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-NOP-11-0009-2808 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | National Organic Program: Origin of Livestock | Rule | Final Rule | 2022-04-05T04:00:00Z | 2022 | 4 | 2022-04-05T04:00:00Z | 2022-06-22T14:48:46Z | 2022-06957 | 0 | 0 | 0900006484ff96a1 | |
| AMS-NOP-11-0009-2321 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | National Organic Program: Origin of Livestock | Proposed Rule | Reopening of Comment Period | 2021-05-12T04:00:00Z | 2021 | 5 | 2021-05-12T04:00:00Z | 2021-07-13T03:59:59Z | 2021-08-06T01:00:12Z | 2021-09978 | 0 | 0 | 0900006484af06fd |
| AMS-NOP-11-0009-2320 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | Consolidated_OOL-Letters_Nov18-Aug20 | Supporting & Related Material | Letter | 2020-09-15T04:00:00Z | 2020 | 9 | 2020-09-15T17:44:53Z | 0 | 0 | 0900006484859eaa | |||
| AMS-NOP-11-0009-2319 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | Memorandum for AMS-NOP-11-0009 | Supporting & Related Material | OMB Clearance Material | 2020-07-23T04:00:00Z | 2020 | 7 | 2020-07-23T17:47:48Z | 0 | 0 | 090000648479d73d | |||
| AMS-NOP-11-0009-1572 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | National Organic Program: Origin of Livestock | Proposed Rule | Reopening of Comment Period | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2019-12-03T04:59:59Z | 2019-12-25T02:03:36Z | 2019-20869 | 0 | 0 | 0900006483ff21f6 |
| AMS-NOP-11-0009-0001 | AMS | National Organic Program (NOP) - Origin of Livestock AMS-NOP-11-0009 | National Organic Program; Origin of Livestock | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-04-28T04:00:00Z | 2015 | 4 | 2015-04-28T04:00:00Z | 2015-07-28T03:59:59Z | 2015-10-22T01:30:23Z | 2015-09851 | 0 | 0 | 0900006481abf03a |
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;