documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "TSA-2003-14702" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TSA-2003-14702-0005 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA - Notice | Rule | Federal Register Publication | 2006-08-22T04:00:00Z | 2006 | 8 | 2006-08-22T04:00:00Z | 2006-08-23T03:59:59Z | 2024-11-11T21:56:04Z | 1 | 0 | 09000064802ada8d | |
| TSA-2003-14702-0004 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA HQ - Transportation Security Administration Transition to Department of Homeland Security; Technical Amendments Reflecting Organizational Changes; Final Rule; Correction (Original) | Rule | Final Rule | 2003-10-09T04:00:00Z | 2003 | 10 | 2003-10-09T04:00:00Z | 2003-10-10T03:59:59Z | 2024-11-11T21:56:04Z | 1 | 0 | 09000064802ada8c | |
| TSA-2003-14702-0003 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA - Final Rule; Correction | Rule | Federal Register Publication | 2003-10-09T04:00:00Z | 2003 | 10 | 2003-10-09T04:00:00Z | 2003-10-10T03:59:59Z | 2024-11-11T21:56:04Z | 1 | 0 | 09000064802ada8b | |
| TSA-2003-14702-0002 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA - Final Rule (Original) | Rule | Federal Register Publication | 2003-08-19T04:00:00Z | 2003 | 8 | 2003-08-19T04:00:00Z | 2003-08-20T03:59:59Z | 2024-11-11T21:56:03Z | 1 | 0 | 09000064802ada8a | |
| TSA-2003-14702-0001 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA - Final Rule | Rule | Federal Register Publication | 2003-08-19T04:00:00Z | 2003 | 8 | 2003-08-19T04:00:00Z | 2003-08-20T03:59:59Z | 2024-11-11T21:55:37Z | 1 | 0 | 09000064802ada89 |
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;