documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "AMS-NOP-15-0012" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-15-0012-6687 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | OLPP-PRIA | Supporting & Related Material | Regulatory Analysis | 2017-12-18T05:00:00Z | 2017 | 12 | 2017-12-18T20:11:22Z | 0 | 0 | 0900006482d31f60 | |||
| AMS-NOP-15-0012-6688 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | Benefit+Cost Workbook for OLP Notice | Supporting & Related Material | Cost and Benefit Analyses | 2017-12-18T05:00:00Z | 2017 | 12 | 2017-12-18T15:03:54Z | 0 | 0 | 0900006482d32876 | |||
| AMS-NOP-15-0012-6686 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | National Organic Program: Organic Livestock and Poultry Practices; Withdrawal | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-12-18T05:00:00Z | 2017 | 12 | 2017-12-18T05:00:00Z | 2018-01-19T04:59:59Z | 2018-02-28T02:01:14Z | 2017-27316 | 0 | 0 | 0900006482d30216 |
| AMS-NOP-15-0012-53801 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | National Organic Program: Organic Livestock and Poultry Practices | Rule | Final Rule | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-14T05:00:00Z | 2017-12-28T19:37:05Z | 2017-24675 | 0 | 0 | 0900006482c717a5 | |
| AMS-NOP-15-0012-6685 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | Animal Welfare Survey Summary_OEFA_2014 | Supporting & Related Material | Analysis | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T14:32:23Z | 0 | 0 | 0900006482b297e8 | |||
| AMS-NOP-15-0012-6684 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | EIC Survey of U.S. Organic Egg Production | Supporting & Related Material | Analysis | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T14:32:06Z | 0 | 0 | 0900006482b297ea | |||
| AMS-NOP-15-0012-16193 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | National Organic Program: Organic Livestock and Poultry Practices | Rule | Delay of Effective Date | 2017-05-10T04:00:00Z | 2017 | 5 | 2017-12-20T05:00:00Z | 2017-12-29T20:42:37Z | 2017-09409 | 0 | 0 | 090000648259faee | |
| AMS-NOP-15-0012-6681 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | National Organic Program: Organic Livestock and Poultry Practices | Rule | Delay of Effective Date | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-09T05:00:00Z | 2017-03-06T18:45:13Z | 2017-02608 | 0 | 0 | 09000064824b6130 | |
| AMS-NOP-15-0012-6680 | AMS | National Organic Program - Organic Livestock and Poultry Practices AMS-NOP-15-0012 | National Organic Program: Organic Livestock and Poultry Practices | Rule | Final Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-01-19T21:52:36Z | 2017-00888 | 0 | 0 | 0900006482485652 |
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;