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 = "Other" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, open_for_comment, posted_date (date), comment_start_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-2002-11334-0067 | TSA | Aviation Security Infrastructure Air Carrier Fees TSA-2002-11334 | 60DY PRA Notice: Intent to Request Renewal From OMB of One Current Public Collection of Information: Aviation Security Infrastructure Fee Records Retention (Original) | Other | Supplement (SUP) | 2012-11-01T04:00:00Z | 2012 | 11 | 2012-11-01T04:00:00Z | 2013-01-28T19:30:21Z | 0 | 0 | 0900006481158f55 | ||
| TSA-2003-14610-0149 | TSA | Security Threat Assessment for Individuals Applying for a Hazardous Materials Endorsement for a Commercial Driver's License TSA-2003-14610 | Federal Register Publication (Original) | Other | Supplement (SUP) | 2012-10-24T04:00:00Z | 2012 | 10 | 2012-10-24T04:00:00Z | 2012-10-24T18:33:03Z | 0 | 0 | 090000648114e9ce | ||
| TSA-2011-0008-0002 | TSA | Aviation Security Advisory Committee (ASAC) TSA-2011-0008 | Notice: Aviation Security Advisory Committee (ASAC) Meeting (Original) | Other | Memo | 2012-08-30T04:00:00Z | 2012 | 8 | 2012-08-30T04:00:00Z | 2025-06-05T16:19:48Z | 0 | 0 | 09000064810f8f05 | ||
| TSA-2008-0013-0020 | TSA | TSA's Significant Guidance Documents TSA-2008-0013 | Revision to Appendix B of Highway Security Action Items 2008 | Other | Appendix | 2012-08-06T04:00:00Z | 2012 | 8 | 2012-08-06T04:00:00Z | 2024-11-07T22:44:47Z | 1 | 0 | 09000064810c2863 | ||
| TSA-2006-24191-0894 | TSA | Transportation Worker Identification Credential Standards for Maritime TSA-2006-24191 | Notice: Exemption from Transportation Worker Identification Credential (TWIC) Expiration Provisions for Certain Individuals Who Hold a Valid TWIC | Other | Agency Response | 2012-06-20T04:00:00Z | 2012 | 6 | 2012-06-20T04:00:00Z | 2024-11-12T05:04:58Z | 1 | 0 | 09000064810505fa | ||
| TSA-2004-19515-0197 | TSA | Air Cargo Security Requirements TSA-2004-19515 | Notice; Air Cargo Screening Fees (Original) | Other | Supplement (SUP) | 2012-05-24T04:00:00Z | 2012 | 5 | 2012-05-24T04:00:00Z | 2012-05-24T14:50:19Z | 0 | 0 | 090000648101a680 | ||
| TSA-2004-19515-0195 | TSA | Air Cargo Security Requirements TSA-2004-19515 | 30-Day Notice: Extension of Agency Information Collection Activity Under OMB Review: Air Cargo Security Requirements (Original) | Other | Agency Response | 2012-04-25T04:00:00Z | 2012 | 4 | 2012-04-25T04:00:00Z | 2012-04-25T20:09:48Z | 0 | 0 | 0900006480ff871e | ||
| TSA-2005-21866-0024 | TSA | Interim Final Rule; Request for Comments TSA-2005-21866 | Notice; 60Day PRA: Intent to Request Renewal From OMB of One Current Public Collection of Information: Enhanced Security Procedures at Ronald Reagan Washington National Airport (Original) | Other | Agency Response | 2012-03-01T05:00:00Z | 2012 | 3 | 2012-03-01T05:00:00Z | 2012-03-01T20:49:23Z | 0 | 0 | 0900006480fc8ec1 | ||
| TSA-2009-0024-0007 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Summary (SUM) | 2012-02-28T05:00:00Z | 2012 | 2 | 2012-02-28T05:00:00Z | 2024-11-12T04:59:17Z | 1 | 0 | 0900006480fc612a |
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;