documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "APHIS-2025-0410" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, open_for_comment, 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-2025-0410-0004 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Pest Risk Assessment: Importation of pineapple (Ananas comosus) from Thailand into the United States for consumption | Supporting & Related Material | Risk Assessment | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:19Z | 0 | 0 | 09000064b9315cc3 | |||
| APHIS-2025-0410-0005 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Pest Risk Assessment: Importation of pineapple (Ananas comosus) from the Philippines into the United States for consumption | Supporting & Related Material | Risk Assessment | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:26Z | 0 | 0 | 09000064b9315cc4 | |||
| APHIS-2025-0410-0006 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Economic Effects Assessment: Importation of Pineapples from Thailand to United States and Territories | Supporting & Related Material | Economic Analysis | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:31Z | 0 | 0 | 09000064b9315cc5 | |||
| APHIS-2025-0410-0003 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Risk Management Document: Importation of pineapple (Ananas comosus) from the Philippines into the United States | Supporting & Related Material | Risk Management Document | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:14Z | 0 | 0 | 09000064b9315cc1 | |||
| APHIS-2025-0410-0001 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Proposed Revision to Requirements: Importation of Fresh Pineapple (Ananas comosus (L.)) from the Philippines and Thailand | Notice | Availability of Document | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T04:00:00Z | 2026-08-11T03:59:59Z | 2026-06-10T21:18:02Z | 2026-11636 | 1 | 0 | 09000064b93215f6 |
| APHIS-2025-0410-0002 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Risk Management Document: Importation of pineapple (Ananas comosus) from Thailand into the United States | Supporting & Related Material | Risk Management Document | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:10Z | 0 | 0 | 09000064b9315cc0 | |||
| APHIS-2025-0410-0007 | APHIS | Philippines Pineapple U.S. Ports Expansion APHIS-2025-0410 | Economic Effects Assessment: Importation of Pineapples from the Philippines to United States and Territories | Supporting & Related Material | Economic Analysis | 2026-06-10T04:00:00Z | 2026 | 6 | 2026-06-10T16:37:35Z | 0 | 0 | 09000064b9315cc6 |
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;