documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "TSA-2006-26514" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Supporting & Related Material 6
- Other 2
- Rule 2
- Notice 1
posted_year 1
- 2007 · 11 ✖
agency_id 1
- TSA 11
| 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-0082 | TSA | Rail Transportation Security TSA-2006-26514 | Transcript of Public Meeting held on February 2, 2007 | Supporting & Related Material | Supplement | 2007-02-21T05:00:00Z | 2007 | 2 | 2024-11-07T02:24:42Z | 0 | 0 | 09000064802aa81d | |||
| TSA-2006-26514-0041 | TSA | Rail Transportation Security TSA-2006-26514 | Greenpeace/Transportation Security Administration - Report | Supporting & Related Material | Supplement | 2007-02-16T05:00:00Z | 2007 | 2 | 2024-11-07T02:23:20Z | 0 | 0 | 09000064802aa7ea | |||
| TSA-2006-26514-0017 | TSA | Rail Transportation Security TSA-2006-26514 | NPRM: Rail Transporation Security (Federal Register Publication) | Rule | Federal Register Publication | 2007-02-15T05:00:00Z | 2007 | 2 | 2007-02-15T05:00:00Z | 2007-02-16T04:59:59Z | 2024-11-07T02:22:27Z | 1 | 0 | 09000064802aa7ca | |
| TSA-2006-26514-0060 | TSA | Rail Transportation Security TSA-2006-26514 | U.S. DHS/TSA - Notice of Proposed Rulemaking (NPRM) | Rule | 2007-02-15T00:00:00Z | 2007 | 2 | 2024-11-07T02:23:47Z | 0 | 1 | 09000064802aa803 | ||||
| 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-0008 | TSA | Rail Transportation Security TSA-2006-26514 | Public Meeting - Notice of Public Meeting; Request for Comments (Federal Register Publication) | Notice | Notice | 2007-01-19T05:00:00Z | 2007 | 1 | 2007-01-19T05:00:00Z | 2007-01-20T04:59:59Z | 2024-11-07T02:24:42Z | 1 | 0 | 09000064802aa816 | |
| TSA-2006-26514-0009 | TSA | Rail Transportation Security TSA-2006-26514 | 1652-AA51 Rail Trans Security NPRM Sammon Letter to Stakeholders | Supporting & Related Material | Supplement | 2007-01-18T05:00:00Z | 2007 | 1 | 2024-11-07T02:24:42Z | 0 | 0 | 09000064802aa825 | |||
| 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 | |
| TSA-2006-26514-0005 | TSA | Rail Transportation Security TSA-2006-26514 | Memorandum of Understanding dated August 9, 2006 | Supporting & Related Material | Supplement | 2007-01-03T05:00:00Z | 2007 | 1 | 2024-11-07T02:23:20Z | 0 | 0 | 09000064802aa7f4 | |||
| TSA-2006-26514-0003 | TSA | Rail Transportation Security TSA-2006-26514 | Memorandum of Understanding between DOT and DHS, September 28, 2004 | Supporting & Related Material | Supplement | 2007-01-03T05:00:00Z | 2007 | 1 | 2024-11-07T02:22:54Z | 0 | 0 | 09000064802aa7d8 | |||
| TSA-2006-26514-0004 | TSA | Rail Transportation Security TSA-2006-26514 | Annex to DOT-DHS MOU between FRA and TSA, September 28, 2006 | Supporting & Related Material | Supplement | 2007-01-03T05:00:00Z | 2007 | 1 | 2024-11-07T02:23:20Z | 0 | 0 | 09000064802aa7e8 |
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;