documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "APHIS-2007-0006" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-2007-0006-0455 | APHIS | Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered to Express Lactoferrin, Lysozyme, or Serum Albumin APHIS-2007-0006 | Final Environmental Assessment and Finding of No Significant Impact In response to Permit applications 06-278-01r, 06-278-02r and 06-285-02r received from Ventria Bioscience | Supporting & Related Material | EA and FONSI | 2007-05-16T04:00:00Z | 2007 | 5 | 2007-05-16T14:46:34Z | 0 | 0 | 090000648023d56a | |||
| APHIS-2007-0006-0453 | APHIS | Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered to Express Lactoferrin, Lysozyme, or Serum Albumin APHIS-2007-0006 | Availability of an Environmental Assessment and Finding of No Significant Impact for a Proposed Field Release of Rice Genetically Engineered To Express Lactoferrin, Lysozyme, or Serum Albumin | Notice | Notice | 2007-05-16T04:00:00Z | 2007 | 5 | 2008-01-07T22:36:47Z | E7-09432 | 0 | 0 | 090000648023d348 | ||
| APHIS-2007-0006-0454 | APHIS | Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered to Express Lactoferrin, Lysozyme, or Serum Albumin APHIS-2007-0006 | Final Environmental Assessment and Finding of No Significant Impact In response to Permit applications 06-278-01r, 06-278-02r and 06-285-02r received from Ventria Bioscience | Supporting & Related Material | 2007-05-16T00:00:00Z | 2007 | 5 | 2007-05-16T14:37:22Z | 0 | 1 | 090000648023ba9c | ||||
| APHIS-2007-0006-0001 | APHIS | Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered to Express Lactoferrin, Lysozyme, or Serum Albumin APHIS-2007-0006 | Ventria Bioscience; Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered To Express Lactoferrin, Lysozyme, or Serum Albumin | Notice | Availability of a document | 2007-02-28T05:00:00Z | 2007 | 2 | 2007-02-28T05:00:00Z | 2007-03-31T03:59:59Z | 2008-01-07T22:37:00Z | E7-03484 | 0 | 0 | 090000648020c449 |
| APHIS-2007-0006-0002 | APHIS | Availability of an Environmental Assessment for Field Tests of Rice Genetically Engineered to Express Lactoferrin, Lysozyme, or Serum Albumin APHIS-2007-0006 | Draft Environmental Assessment in response to Permit applications 06-278-01r, 06-278-02r and 06-285-02r received from Ventria Bioscience to conduct field plantings of rice (Oryza sativa) genetically engineered to express human lysozyme, lactoferrin or serum albumin | Supporting & Related Material | Environmental assessment | 2007-02-28T05:00:00Z | 2007 | 2 | 2007-02-28T12:20:01Z | 0 | 0 | 09000064802089e9 |
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;