documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "APHIS-2006-0140" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| APHIS-2006-0140-0582 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Determination of an extension of nonregulated status of rice line LLRICE601 from LLRICE62 and LLRICE06 | Supporting & Related Material | Other | 2006-12-04T05:00:00Z | 2006 | 12 | 2006-12-04T12:23:53Z | 0 | 0 | 09000064801e5ab5 | |||
| APHIS-2006-0140-0583 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | USDA/APHIS Environmental Assessment In response to Bayer CropScience Petition 06-234-01P seeking Extension of Determination of Non-regulated Status for Glufosinate Resistant rice, Oryza sativa, event LLRICE601 | Supporting & Related Material | Environmental assessment | 2006-12-04T05:00:00Z | 2006 | 12 | 2006-12-04T12:23:54Z | 0 | 0 | 09000064801e5ac0 | |||
| APHIS-2006-0140-0581 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Bayer CropScience; Extension of Determination of Nonregulated Status to Rice Genetically Engineered for Glufosinate Herbicide Tolerance | Notice | Notice | 2006-12-04T05:00:00Z | 2006 | 12 | 2008-01-07T22:36:41Z | E6-20516 | 0 | 0 | 09000064801e7e80 | ||
| APHIS-2006-0140-0584 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Finding of No Significant Impact: Animal and Plant Health Inspection Service, Extension of Nonregulated Status to Rice Line LLRICE601 | Supporting & Related Material | EA and FONSI | 2006-12-04T05:00:00Z | 2006 | 12 | 2006-12-04T12:23:54Z | 0 | 0 | 09000064801e5ac7 | |||
| APHIS-2006-0140-0585 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Attachment to finding of no significant impact: Response to comments, APHIS No. 06-234-01p | Supporting & Related Material | Other | 2006-12-04T05:00:00Z | 2006 | 12 | 2006-12-04T12:23:55Z | 0 | 0 | 09000064801e5acf | |||
| APHIS-2006-0140-0003 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Bayer CropScience Petition 06-234-01 Seeking Extension of Determination of Non-regulated Status for Glufosinate Tolerant Rice, Oryza sativa, event LLRICE601. | Supporting & Related Material | Petition for determination of nonregulated status | 2006-09-08T14:13:50Z | 2006 | 9 | 2006-09-08T14:13:56Z | 0 | 0 | 09000064801c8c4b | |||
| APHIS-2006-0140-0001 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Bayer CropScience; Availability of an Environmental Assessment and a Preliminary Decision for an Extension of a Determination of Nonregulated Status for Rice Genetically Engineered for Glufosinate Herbicide Tolerance | Notice | Availability of a document | 2006-09-08T12:18:21Z | 2006 | 9 | 2006-09-08T12:18:21Z | 2006-10-11T03:59:59Z | 2022-04-19T01:00:09Z | E6-14921 | 0 | 0 | 09000064801c8b76 |
| APHIS-2006-0140-0002 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | USDA/APHIS, Draft Environmental Assessment, In response to Bayer CropScience Petition 06-234-01P seeking Extension of Determination of Non-regulated Status for Glufosinate Resistant rice, Oryza sativa, event LLRICE601 | Supporting & Related Material | Environmental assessment | 2006-09-08T04:00:00Z | 2006 | 9 | 2006-09-08T12:19:13Z | 0 | 0 | 09000064801c8624 | |||
| APHIS-2006-0140-0004 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | FR Notice, FONSI, and EA for Previously Determined Non-regulated Status for Glufosinate Tolerant Rice. | Supporting & Related Material | EA and FONSI | 2006-09-08T04:00:00Z | 2006 | 9 | 2006-09-08T14:12:16Z | 0 | 0 | 09000064801c8c77 | |||
| APHIS-2006-0140-0005 | APHIS | Extension of Determination of Nonregulated Status for Genetically Engineered Rice APHIS-2006-0140 | Petition for Determination of Non-regulated Status for LLRICE06 and LLRICE62. | Supporting & Related Material | Petition for determination of nonregulated status | 2006-09-08T04:00:00Z | 2006 | 9 | 2006-09-08T14:12:16Z | 0 | 0 | 09000064801c8c85 |
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;