documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "TSA-2009-0024" and document_type = "Other" 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-2009-0024-0021 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Adjudication Notice | 2019-06-24T04:00:00Z | 2019 | 6 | 2019-06-24T04:00:00Z | 2019-06-24T19:13:09Z | 0 | 0 | 0900006483d3b658 | ||
| TSA-2009-0024-0019 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Supplemental Comment | 2018-03-14T04:00:00Z | 2018 | 3 | 2018-03-14T04:00:00Z | 2018-03-14T18:19:38Z | 0 | 0 | 0900006483011e99 | ||
| TSA-2009-0024-0018 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Additional Information | 2017-03-15T04:00:00Z | 2017 | 3 | 2017-03-15T04:00:00Z | 2017-03-15T19:20:17Z | 0 | 0 | 090000648250ad27 | ||
| TSA-2009-0024-0015 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Adjudication Notice | 2016-02-26T05:00:00Z | 2016 | 2 | 2016-02-26T05:00:00Z | 2016-02-26T20:16:46Z | 0 | 0 | 0900006481e8c188 | ||
| TSA-2009-0024-0010 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Adjudication Notice | 2013-02-13T05:00:00Z | 2013 | 2 | 2024-11-07T22:47:10Z | 1 | 0 | 09000064811f56db | |||
| 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 | ||
| TSA-2009-0024-0004 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Other | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-02-11T05:00:00Z | 2024-11-07T22:29:54Z | 1 | 0 | 0900006480bed1fd | ||
| TSA-2009-0024-0001 | TSA | Enforcement Actions Summary - Notice of Availability TSA-2009-0024 | Notice of Availability: Enforcement Actions Summary (Original) | Other | Other | 2009-12-22T05:00:00Z | 2009 | 12 | 2009-12-22T05:00:00Z | 2024-11-07T22:12:26Z | 1 | 0 | 0900006480a6f1d7 |
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;