documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "TSA-2016-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- TSA 7
| 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-2016-0002-0016 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | Advance Notice of Proposed Rulemaking; Reopening of Comment Period: Surface Transportation Vulnerability Assessments and Security Plans (VASP) (Original) | Other | Supplement (SUP) | 2017-03-15T04:00:00Z | 2017 | 3 | 2017-03-15T04:00:00Z | 2017-03-15T19:17:20Z | 0 | 0 | 090000648250ad24 | ||
| TSA-2016-0002-0015 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | Surface Transportation Vulnerability Assessments and Security Plans | Proposed Rule | Extension of Comment Period | 2017-03-14T04:00:00Z | 2017 | 3 | 2017-03-14T04:00:00Z | 2017-05-16T03:59:59Z | 2017-05-16T01:00:22Z | 2017-04976 | 0 | 0 | 0900006482505f20 |
| TSA-2016-0002-0005 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | Surface Transportation Vulnerability Assessments and Security Plans | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T05:00:00Z | 2017-02-15T04:59:59Z | 2017-02-15T14:02:28Z | 2016-28300 | 0 | 0 | 09000064824141bc |
| TSA-2016-0002-0001 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | ANPRM: Surface Transportation Vulnerability Assessments and Security Plans (VASP) (Original) | Other | Supplemental Comment | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T05:00:00Z | 2016-12-15T20:07:22Z | 0 | 0 | 09000064823e17f1 | ||
| TSA-2016-0002-0003 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | ANPRM: Surface Transportation VASP Request for Comments Only | Supporting & Related Material | Supplement | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T20:07:47Z | 0 | 0 | 09000064823e17f8 | |||
| TSA-2016-0002-0004 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | ANPRM: Surface Transportation VASP; TOC Preamble Footnotes Listing | Supporting & Related Material | Supplement | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T20:08:03Z | 0 | 0 | 09000064823e1872 | |||
| TSA-2016-0002-0002 | TSA | Surface Transportation Vulnerability Assessments and Security Planning (VASP) TSA-2016-0002 | ANPRM: Surface Transportation VASP 9-11 Act Provisions | Supporting & Related Material | Supplement | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T20:07:34Z | 0 | 0 | 09000064823e17f3 |
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;