documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "TSA", document_type = "Notice" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TSA-2003-14702-0006 | TSA | Transportation Security Administration Transition to Department of Homeland Security;Technical Amendments Reflectiing Organizational Changes TSA-2003-14702 | U.S. DHS/TSA - Notice: TSA Enforcement Docket Transfer and Change of Address (Original) | Notice | Notice | 2006-08-23T04:00:00Z | 2006 | 8 | 2006-08-23T04:00:00Z | 2006-08-24T03:59:59Z | 2025-10-27T09:00:09Z | 1 | 0 | 09000064802ada8e | |
| TSA-2001-11120-0074 | TSA | Passenger Civil Aviation Security Service Fees TSA-2001-11120 | U.S. DHS/TSA - TSA-ACAA-ATA Meeting of 06-13-06 Summary (Passenger Fees with Involuntary Re-Routes) | Notice | Public Meetings | 2006-08-03T04:00:00Z | 2006 | 8 | 2006-08-03T04:00:00Z | 2006-08-04T03:59:59Z | 2024-11-07T17:22:07Z | 1 | 0 | 09000064802c8412 | |
| TSA-2006-25335-0005 | TSA | Privacy Act of 1974; System of Records; National Finance Center (NFC) Payroll Personnel Systems TSA-2006-25335 | Privacy Act of 1974: System of Records; National Fiance Center (NFC0 Payroll Personnel System - Correction (Federal Register Publication) | Notice | Notice | 2006-07-31T04:00:00Z | 2006 | 7 | 2006-07-31T04:00:00Z | 2006-08-01T03:59:59Z | 2024-11-11T22:04:34Z | 1 | 0 | 09000064802acdc2 | |
| TSA-2006-25335-0004 | TSA | Privacy Act of 1974; System of Records; National Finance Center (NFC) Payroll Personnel Systems TSA-2006-25335 | Privacy Act of 1974: System of Records; National Finance Center (NFC) Payroll Personnel System, Correction (Federal Register Publication) | Notice | Notice | 2006-07-26T04:00:00Z | 2006 | 7 | 2006-07-26T04:00:00Z | 2006-07-27T03:59:59Z | 2024-11-11T22:04:34Z | 1 | 0 | 09000064802acdc1 | |
| TSA-2006-25335-0002 | TSA | Privacy Act of 1974; System of Records; National Finance Center (NFC) Payroll Personnel Systems TSA-2006-25335 | Privacy Act of 1974: System of Records; National Finance Center (NFC) Payroll Personnel System (Federal Register Publication) | Notice | Notice | 2006-07-24T04:00:00Z | 2006 | 7 | 2006-07-24T04:00:00Z | 2006-07-25T03:59:59Z | 2024-11-11T22:04:34Z | 1 | 0 | 09000064802acdbc | |
| TSA-2001-11120-0073 | TSA | Passenger Civil Aviation Security Service Fees TSA-2001-11120 | U.S. DHS/TSA - ATA-TSA Meeting of 10-25-05 Summary (Compliance Audit Findings on Passenger Fee Issues) | Notice | Public Meetings | 2006-07-21T04:00:00Z | 2006 | 7 | 2006-07-21T04:00:00Z | 2006-07-22T03:59:59Z | 2024-11-07T17:22:07Z | 1 | 0 | 09000064802c8411 | |
| TSA-2006-24191-0007 | TSA | Transportation Worker Identification Credential Standards for Maritime TSA-2006-24191 | Notice of Public Meeting: Transportation Worker Identification Credential (TWIC) Implementation in the Maritime Sector; Hazardous Materials Endorsement for a Commercial Driver's License (Federal Register Publication) | Notice | Notice | 2006-05-26T04:00:00Z | 2006 | 5 | 2006-05-26T04:00:00Z | 2006-05-27T03:59:59Z | 2024-11-11T22:32:26Z | 1 | 0 | 09000064802c4d26 | |
| TSA-2001-11120-0072 | TSA | Passenger Civil Aviation Security Service Fees TSA-2001-11120 | U.S. DHS/TSA HQ - OMB 1652-0001 Security Service Fees PRA 30 Day Renewal Notice and OMB Notice of Action | Notice | Notice | 2006-05-01T04:00:00Z | 2006 | 5 | 2006-05-01T04:00:00Z | 2006-05-02T03:59:59Z | 2024-11-07T17:22:07Z | 1 | 0 | 09000064802c8410 | |
| TSA-2002-11602-0022 | TSA | Civil Aviation Security Rules TSA-2002-11602 | U.S. DHS/TSA - Notice: 30 DY Extension Agency Information Collection Activity Under OMB Review: Security Programs for Foreign Air Carriers (Original) | Notice | Notice | 2006-02-01T05:00:00Z | 2006 | 2 | 2006-02-01T05:00:00Z | 2006-02-02T04:59:59Z | 2024-11-07T16:56:39Z | 1 | 0 | 09000064802bc0fd |
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;