documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "TSA-2006-26514" 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-2006-26514-0121 | TSA | Rail Transportation Security TSA-2006-26514 | 30DY PRA Notice: Revision of Agency Information Collection Activity Under OMB Review: Rail Transportation Security (Original) | Other | Supplement (SUP) | 2018-08-15T04:00:00Z | 2018 | 8 | 2018-08-15T04:00:00Z | 2018-08-15T17:53:57Z | 0 | 0 | 09000064836265b1 | ||
| TSA-2006-26514-0116 | TSA | Rail Transportation Security TSA-2006-26514 | 60DY PRA Notice: Intent to Request Extension From OMB of One Current Public Collection of Information: Rail Transportation Security (Original) | Other | Supplement (SUP) | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-12T04:00:00Z | 2018-03-12T14:13:15Z | 0 | 0 | 0900006482ffe5e2 | ||
| TSA-2006-26514-0114 | TSA | Rail Transportation Security TSA-2006-26514 | Extension of Agency Information Collection Activity Under OMB Review: Rail Transportation Security 30-Day Notice (Original) | Other | OMB Review | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T04:00:00Z | 2014-09-18T03:59:59Z | 2014-08-20T15:09:47Z | 0 | 0 | 090000648182e706 | |
| TSA-2006-26514-0112 | TSA | Rail Transportation Security TSA-2006-26514 | Intent to Request Renewal from OMB of One Current Public Collection of Information: Rail Transportation Security (Original) | Other | Supplement (SUP) | 2014-05-19T04:00:00Z | 2014 | 5 | 2018-08-15T17:52:10Z | 0 | 0 | 0900006481703767 | |||
| TSA-2006-26514-0103 | TSA | Rail Transportation Security TSA-2006-26514 | Rail Transportation Security (Original) | Other | Other | 2009-01-21T05:00:00Z | 2009 | 1 | 2009-01-21T05:00:00Z | 2024-11-07T21:52:58Z | 1 | 0 | 09000064808294b7 | ||
| TSA-2006-26514-0101 | TSA | Rail Transportation Security TSA-2006-26514 | Rail Transportation Security Delay Effect Date (Original) | Other | Other | 2008-12-29T05:00:00Z | 2008 | 12 | 2008-12-29T05:00:00Z | 2024-11-12T04:27:01Z | 1 | 0 | 0900006480806c25 | ||
| TSA-2006-26514-0016 | TSA | Rail Transportation Security TSA-2006-26514 | NPRM: Rail Transportation Security Notice of Proposed Rulemaking dated February 12, 2007 (Original) | Other | Other | 2007-02-13T05:00:00Z | 2007 | 2 | 2007-02-13T05:00:00Z | 2007-02-14T04:59:59Z | 2024-11-07T02:22:27Z | 1 | 0 | 09000064802aa7c9 | |
| TSA-2006-26514-0007 | TSA | Rail Transportation Security TSA-2006-26514 | NPRM: Rail Transportation Security Public Meeting Notice dated January 11, 2007 (Original) | Other | Other | 2007-01-16T05:00:00Z | 2007 | 1 | 2007-01-16T05:00:00Z | 2007-01-17T04:59:59Z | 2024-11-07T02:24:16Z | 1 | 0 | 09000064802aa80d |
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;