documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "AMS-NOP-20-0037" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-NOP-20-0037-0561 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | National Organic Program: Final Decision on Organic Livestock and Poultry Practices Rule and Summary of Comments on the Economic Analysis Report | Rule | Policy Statement | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T04:00:00Z | 2020-12-03T12:39:55Z | 2020-19939 | 0 | 0 | 0900006484860983 | |
| AMS-NOP-20-0037-0009 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Withdrawal RIA Table C Workbook | Supporting & Related Material | Cost and Benefit Analyses | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:26:49Z | 0 | 0 | 09000064844c5aeb | |||
| AMS-NOP-20-0037-0007 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Barn and Layer projections FR 01 2017 OMB | Supporting & Related Material | Cost and Benefit Analyses | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:26:04Z | 0 | 0 | 09000064844c5ae9 | |||
| AMS-NOP-20-0037-0008 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | C-OLPP All Costs Benefits FINAL | Supporting & Related Material | Cost and Benefit Analyses | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:26:26Z | 0 | 0 | 09000064844c5aea | |||
| AMS-NOP-20-0037-0001 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | National Organic Program: Organic Livestock and Poultry Practices Economic Analysis Report | Proposed Rule | Request for Comment | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T04:00:00Z | 2020-05-27T03:59:59Z | 2020-06-23T01:01:21Z | 2020-08548 | 0 | 0 | 09000064844c5076 |
| AMS-NOP-20-0037-0006 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | A-OLPP layer costs - cage-free | Supporting & Related Material | Cost and Benefit Analyses | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:25:40Z | 0 | 0 | 09000064844c5ae8 | |||
| AMS-NOP-20-0037-0002 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Preliminary RIA | Supporting & Related Material | Economic Analysis | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:23:02Z | 0 | 0 | 09000064844c5669 | |||
| AMS-NOP-20-0037-0005 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Withdrawal Workbook | Supporting & Related Material | Cost and Benefit Analyses | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:25:14Z | 0 | 0 | 09000064844c57c4 | |||
| AMS-NOP-20-0037-0004 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Withdrawal RIA | Supporting & Related Material | Economic Analysis | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:24:22Z | 0 | 0 | 09000064844c5ae7 | |||
| AMS-NOP-20-0037-0003 | AMS | Request for Comment on Organic Livestock and Poultry Practices Economic Analysis Report AMS-NOP-20-0037 | Final RIA | Supporting & Related Material | Economic Analysis | 2020-04-23T04:00:00Z | 2020 | 4 | 2020-04-23T13:23:49Z | 0 | 0 | 09000064844c5ae6 |
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;