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-2015-0036" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| APHIS-2015-0036-0151 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | Transcript for May 20, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-06-22T04:00:00Z | 2015 | 6 | 2015-06-22T21:14:46Z | 0 | 0 | 0900006481b4ea0f | |||
| APHIS-2015-0036-0015 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | Transcript for May 12, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T19:50:12Z | 0 | 0 | 0900006481b0a9b8 | |||
| APHIS-2015-0036-0012 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | PPT for May 6, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T19:34:38Z | 0 | 0 | 0900006481b0a96a | |||
| APHIS-2015-0036-0014 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | PPT for May 12, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T19:48:06Z | 0 | 0 | 0900006481b0a9b6 | |||
| APHIS-2015-0036-0016 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | PPT for May 20, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T19:51:43Z | 0 | 0 | 0900006481b0a9df | |||
| APHIS-2015-0036-0013 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | Transcript for May 6, 2015 Public Engagement Webinar | Supporting & Related Material | Background Material | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T19:45:48Z | 0 | 0 | 0900006481b0a970 | |||
| APHIS-2015-0036-0001 | APHIS | New Stakeholder Engagement on APHIS Biotechnology Regulations APHIS-2015-0036 | New Stakeholder Engagement on APHIS Biotechnology Regulation | Other | Request | 2015-04-28T04:00:00Z | 2015 | 4 | 2015-04-28T04:00:00Z | 2015-06-23T03:59:59Z | 2015-06-27T01:30:31Z | 0 | 0 | 0900006481ab6a80 |
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;