documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "APHIS" and docket_id = "APHIS-2006-0015" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0015-0008 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Availability of an Addendum to Environmental Assessment and Finding of No Significant Impact for Field Release of Genetically Engineered Pink Bollworm | Notice | Availability of a document | 2006-07-26T11:38:24Z | 2006 | 7 | 2008-01-07T22:36:52Z | E6-11939 | 0 | 0 | 09000064801a6b77 | ||
| APHIS-2006-0015-0009 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Addendum to Environmental Assessment and Finding of No Significant Impact for Field Release of Genetically Engineered Pink Bollworm | Supporting & Related Material | Other | 2006-07-26T04:00:00Z | 2006 | 7 | 2006-09-02T12:49:26Z | 0 | 0 | 09000064801a6c46 | |||
| APHIS-2006-0015-0006 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Availability of an Addendum to an Environmental Assessment for Field Release of Genetically Engineered Pink Bollworm | Notice | Availability of a document | 2006-06-20T11:29:23Z | 2006 | 6 | 2006-06-20T11:29:23Z | 2006-07-06T03:59:59Z | 2008-01-07T22:36:59Z | E6-09661 | 0 | 0 | 090000648018be06 |
| APHIS-2006-0015-0007 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Addendum to Environmental Assessment, Addressing amendments to permit number APHIS No. 05-098-1r | Supporting & Related Material | Other | 2006-06-20T04:00:00Z | 2006 | 6 | 2006-09-02T12:49:26Z | 0 | 0 | 090000648018bf14 | |||
| APHIS-2006-0015-0005 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Availability of an Environmental Assessment and Finding of No Significant Impact for Field Release of Genetically Engineered Pink Bollworm | Notice | Availability of a document | 2006-04-19T11:35:14Z | 2006 | 4 | 2008-01-07T22:36:51Z | E6-05878 | 0 | 0 | 09000064801606a8 | ||
| APHIS-2006-0015-0001 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm | Notice | Availability of a document | 2006-02-13T12:50:55Z | 2006 | 2 | 2006-02-13T12:50:55Z | 2006-03-16T04:59:59Z | 2008-01-07T22:36:43Z | E6-01972 | 0 | 0 | 090000648012f236 |
| APHIS-2006-0015-0002 | APHIS | Availability of Environmental Assessment for a Proposed Field Trial of Genetically Engineered Pink Bollworm APHIS-2006-0015 | Environmental Assessment: Field Study of Genetically Modified Pink Bollworm, Pectinophora gossypiella (Lepidoptera: Gelechiidae) | Supporting & Related Material | Environmental assessment | 2006-02-13T05:00:00Z | 2006 | 2 | 2006-09-02T12:49:26Z | 0 | 0 | 0900006480126018 |
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;