documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "TSA-2007-28572" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 4
- Notice 2
- Rule 2
- Supporting & Related Material 2
posted_year 1
- 2007 · 10 ✖
agency_id 1
- TSA 10
| 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-2007-28572-0354 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | NPRM: Extension of Comment Period; Secure Flight Program (Original) | Other | Other | 2007-12-31T05:00:00Z | 2007 | 12 | 2007-12-31T05:00:00Z | 2008-08-11T13:45:02Z | 0 | 0 | 0900006480380bb9 | ||
| TSA-2007-28572-0281 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | NPRM: Extension of Comment Period; Secure Flight Program (Fed Reg Pub) | Rule | Federal Register Publication | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T04:00:00Z | 2007-11-22T04:59:59Z | 2011-06-11T18:01:56Z | 07-05254 | 0 | 0 | 0900006480355a75 |
| TSA-2007-28572-0148 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | U.S. DHS/TSA Headquarters - Two Attachments | Supporting & Related Material | Supplement | 2007-10-12T04:00:00Z | 2007 | 10 | 2007-12-06T19:31:55Z | 0 | 0 | 09000064802e9afd | |||
| TSA-2007-28572-0146 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | Public Meeting: Secure Flight Program | Notice | 2007-10-12T00:00:00Z | 2007 | 10 | 2011-06-11T18:01:57Z | 0 | 1 | 09000064802f3521 | ||||
| TSA-2007-28572-0022 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | Tim Sanchez | Other | 2007-09-20T00:00:00Z | 2007 | 9 | 2024-11-12T04:09:04Z | 0 | 1 | 0900006480384a52 | ||||
| TSA-2007-28572-0005 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | Notice: Public Meeting; Secure Flight Program; Request for Comments (Original) | Other | Other | 2007-09-05T04:00:00Z | 2007 | 9 | 2007-09-05T04:00:00Z | 2007-09-06T03:59:59Z | 2024-11-08T04:04:46Z | 1 | 0 | 09000064802ad5b4 | |
| TSA-2007-28572-0004 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | Notice of Public Meeting and Request for Comments | Notice | Public Meetings | 2007-09-05T04:00:00Z | 2007 | 9 | 2007-09-05T04:00:00Z | 2007-09-06T03:59:59Z | 2008-08-08T14:11:15Z | 0 | 0 | 09000064802ad5b3 | |
| TSA-2007-28572-0001 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | NPRM: Secure Flight Program (Fed Reg Pub) | Rule | Federal Register Publication | 2007-08-23T04:00:00Z | 2007 | 8 | 2007-08-23T04:00:00Z | 2007-10-23T03:59:59Z | 2008-08-11T13:29:36Z | 0 | 0 | 09000064802ad5b0 | |
| TSA-2007-28572-0003 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | Notice of Proposed Rulemaking: Draft Regulatory Evaluation; Secure Flight | Supporting & Related Material | Supplement | 2007-08-23T04:00:00Z | 2007 | 8 | 2008-08-08T15:01:07Z | 0 | 0 | 09000064802ad5b2 | |||
| TSA-2007-28572-0002 | TSA | Secure Flight Program (NPRM) TSA-2007-28572 | NPRM: Secure Flight Program (Original) | Other | Other | 2007-08-23T04:00:00Z | 2007 | 8 | 2007-08-23T04:00:00Z | 2007-08-24T03:59:59Z | 2008-08-11T13:35:37Z | 0 | 0 | 09000064802ad5b1 |
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;