documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "TSA", document_type = "Rule" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2004-17131-0083 | TSA | Aircraft Repair Station Security TSA-2004-17131 | PR: Aircraft Repair Station Security (Federal Register Publication) | Rule | Federal Register Publication | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T05:00:00Z | 2010-02-20T04:59:59Z | 2024-11-12T04:46:52Z | E9-30721 | 1 | 0 | 0900006480a73259 |
| TSA-2004-17131-0027 | TSA | Aircraft Repair Station Security TSA-2004-17131 | NPRM: Aircraft Repair Station Security (Federal Register Publication) | Rule | Federal Register Publication | 2009-11-18T05:00:00Z | 2009 | 11 | 2009-11-18T05:00:00Z | 2010-01-20T04:59:59Z | 2024-11-12T04:49:50Z | E9-27624 | 1 | 0 | 0900006480a58ff0 |
| TSA-2009-0018-0003 | TSA | Air Cargo Screening - Interim Final Rule and Request for Comments TSA-2009-0018 | IFR: Air Cargo Screening (Federal Register Publication) | Rule | Federal Register Publication | 2009-09-16T04:00:00Z | 2009 | 9 | 2009-09-16T04:00:00Z | 2009-11-17T04:59:59Z | 2024-11-12T04:45:10Z | E9-21794 | 1 | 0 | 0900006480a246f2 |
| TSA-2009-0014-0001 | TSA | Reporting of Security Issues TSA-2009-0014 | NPRM: Reporting of Security Issues (Federal Register Publication) | Rule | Federal Register Publication | 2009-08-26T04:00:00Z | 2009 | 8 | 2009-08-26T04:00:00Z | 2009-10-27T03:59:59Z | 2024-11-07T22:07:35Z | E9-20551 | 1 | 0 | 0900006480a12e2e |
| TSA-2009-0013-0001 | TSA | Revision of Enforcement Procedures TSA-2009-0013 | FR: Revision of Enforcement Procedures (Federal Register Publication) | Rule | Federal Register Publication | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T04:00:00Z | 2009-09-22T03:59:59Z | 2011-06-11T18:01:59Z | E9-17133 | 0 | 0 | 09000064809f71be |
| TSA-2008-0011-0003 | TSA | False Statements Regarding Security Background Checks TSA-2008-0011 | FR: False Statements Regarding Security Background Checks (Federal Register Publication) | Rule | Federal Register Publication | 2009-06-26T04:00:00Z | 2009 | 6 | 2009-06-26T04:00:00Z | 2011-06-11T18:01:58Z | E9-15080 | 0 | 0 | 09000064809e1c03 | |
| TSA-2006-26514-0108 | TSA | Rail Transportation Security TSA-2006-26514 | FR: Rail Transportation Security (Federal Publication) | Rule | Federal Register Publication | 2009-05-20T04:00:00Z | 2009 | 5 | 2009-05-20T04:00:00Z | 2011-06-11T18:01:55Z | E9-11736 | 0 | 0 | 09000064809a3618 | |
| TSA-2006-24191-0886 | TSA | Transportation Worker Identification Credential Standards for Maritime TSA-2006-24191 | FR: Transportation Worker Identification Credential (TWIC): Implementation in the Maritime Sector; Hazardous Materials Endorsement for a Commercial Driver's License (Federal Register Publication) | Rule | Federal Register Publication | 2009-03-26T04:00:00Z | 2009 | 3 | 2009-03-26T04:00:00Z | 2009-04-15T03:59:59Z | 2009-03-26T17:49:27Z | E9-06833 | 0 | 0 | 09000064809309ba |
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;