documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "TSA-2020-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
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-2020-0001-0020 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Opportunity to Become a Secured Packing Facility | Notice | Notice of Intent | 2021-06-14T04:00:00Z | 2021 | 6 | 2021-06-14T04:00:00Z | 2021-06-14T12:05:01Z | 2021-12372 | 0 | 0 | 0900006484b7984c | |
| TSA-2020-0001-0012 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Public Meeting and Extension of Comment Period on Request for Information: Air Cargo Security Options To Mitigate Costs of Compliance With International Security Requirements | Supporting & Related Material | Supplement | 2020-08-14T04:00:00Z | 2020 | 8 | 2020-08-14T14:15:37Z | 0 | 0 | 0900006484800882 | |||
| TSA-2020-0001-0009 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Access to Audio Recording of TSA's Air Cargo Virtual Public Meeting | Supporting & Related Material | Supplement | 2020-07-31T04:00:00Z | 2020 | 7 | 2020-07-31T20:15:24Z | 0 | 0 | 09000064847c6603 | |||
| TSA-2020-0001-0008 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | TSA Air Cargo Virtual Public Meeting Agenda, July 29, 2020 | Supporting & Related Material | Supplement | 2020-07-22T04:00:00Z | 2020 | 7 | 2020-07-22T14:42:06Z | 0 | 0 | 0900006484793f01 | |||
| TSA-2020-0001-0006 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Meetings: Air Cargo Security Options To Mitigate Costs of Compliance With International Security Requirements | Notice | Meeting | 2020-06-24T04:00:00Z | 2020 | 6 | 2020-06-24T04:00:00Z | 2020-06-24T12:29:21Z | 2020-13580 | 0 | 0 | 0900006484704278 | |
| TSA-2020-0001-0002 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Request For Information: Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements (Original) | Other | Additional Information | 2020-04-17T04:00:00Z | 2020 | 4 | 2020-04-17T04:00:00Z | 2020-04-21T18:41:00Z | 0 | 0 | 09000064844b06b7 | ||
| TSA-2020-0001-0001 | TSA | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements TSA-2020-0001 | Air Cargo Security Options to Mitigate Costs of Compliance with International Security Requirements | Proposed Rule | Request for Comment | 2020-04-10T04:00:00Z | 2020 | 4 | 2020-04-10T04:00:00Z | 2020-08-28T03:59:59Z | 2020-08-28T01:02:17Z | 2020-06929 | 0 | 0 | 09000064844994de |
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;