documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "TSA-2001-10999" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- TSA 10
| 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-2001-10999-0049 | TSA | Criminal History Records Checks TSA-2001-10999 | International Brotherhood of Teamsters/AFL-CI0 - Supplemental Comments | Supporting & Related Material | Supplement | 2002-03-19T05:00:00Z | 2002 | 3 | 2024-11-07T17:51:36Z | 0 | 0 | 0900006480303303 | |||
| TSA-2001-10999-0047 | TSA | Criminal History Records Checks TSA-2001-10999 | International Brotherhood of Teamsters, Airline Division - Supplemental Comments | Supporting & Related Material | Supplement | 2002-03-12T05:00:00Z | 2002 | 3 | 2024-11-07T17:51:36Z | 0 | 0 | 0900006480303301 | |||
| TSA-2001-10999-0031 | TSA | Criminal History Records Checks TSA-2001-10999 | Air Transport Association of America, Inc. & Regional Airline Association - Request to Extend Comment Period to January 17, 2002 | Other | Request | 2002-02-22T05:00:00Z | 2002 | 2 | 2002-02-22T05:00:00Z | 2002-02-26T04:59:59Z | 2024-11-07T17:51:19Z | 1 | 0 | 09000064803032f0 | |
| TSA-2001-10999-0024 | TSA | Criminal History Records Checks TSA-2001-10999 | Correction - Final Rule with Request for Comments; Reopening of Comment Period | Rule | Federal Register Publication | 2002-01-25T05:00:00Z | 2002 | 1 | 2002-01-25T05:00:00Z | 2002-01-26T04:59:59Z | 2024-11-07T17:51:00Z | 1 | 0 | 09000064803032e8 | |
| TSA-2001-10999-0026 | TSA | Criminal History Records Checks TSA-2001-10999 | U.S. DOT/FAA - Final Rule (Original) | Rule | Final Rule | 2002-01-25T05:00:00Z | 2002 | 1 | 2002-01-25T05:00:00Z | 2002-01-29T04:59:59Z | 2024-11-07T17:51:00Z | 1 | 0 | 09000064803032ea | |
| TSA-2001-10999-0023 | TSA | Criminal History Records Checks TSA-2001-10999 | Final Rule with Request for Comments; Reopening of Comment Period | Rule | Federal Register Publication | 2002-01-25T05:00:00Z | 2002 | 1 | 2002-01-25T05:00:00Z | 2002-01-26T04:59:59Z | 2024-11-07T17:51:00Z | 1 | 0 | 09000064803032e7 | |
| TSA-2001-10999-0017 | TSA | Criminal History Records Checks TSA-2001-10999 | Transportation Trades Department, AFL-CIO - Request for 45-Day Extension to Comment Period | Other | Request | 2002-01-15T05:00:00Z | 2002 | 1 | 2002-01-15T05:00:00Z | 2002-01-24T04:59:59Z | 2024-11-07T17:50:37Z | 1 | 0 | 09000064803032e0 | |
| TSA-2001-10999-0006 | TSA | Criminal History Records Checks TSA-2001-10999 | U.S. DOT/FAA - Final Rule with Request for Comments; Extension of Comment Period | Rule | Federal Register Publication | 2002-01-07T05:00:00Z | 2002 | 1 | 2002-01-07T05:00:00Z | 2002-01-08T04:59:59Z | 2024-11-07T17:51:54Z | 1 | 0 | 090000648030330c | |
| TSA-2001-10999-0003 | TSA | Criminal History Records Checks TSA-2001-10999 | Final Rule; Request for Comments (Original) | Rule | Final Rule | 2001-12-06T05:00:00Z | 2001 | 12 | 2001-12-06T05:00:00Z | 2001-12-08T04:59:59Z | 2024-11-07T17:51:19Z | 1 | 0 | 09000064803032ee | |
| TSA-2001-10999-0001 | TSA | Criminal History Records Checks TSA-2001-10999 | Final Rule; Request for Comments | Rule | Final Rule | 2001-12-06T05:00:00Z | 2001 | 12 | 2001-12-06T05:00:00Z | 2001-12-07T04:59:59Z | 2024-11-07T17:50:37Z | 1 | 0 | 09000064803032d9 |
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;