documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FRA-2021-0006" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2021-0006-0027 | FRA | Federal Railroad Administration - Information Collection Notices: Information Collection (ICRs FRA-2021-0006 | Form FRA F 6180 49AP (OMB Control No. 2130-0035)(ICR published 8.18.2022) | Other | Forms | 2022-08-17T04:00:00Z | 2022 | 8 | 2022-08-17T04:00:00Z | 2022-08-17T17:17:45Z | 0 | 0 | 090000648524684b | ||
| FRA-2021-0006-0021 | FRA | Federal Railroad Administration - Information Collection Notices: Information Collection (ICRs FRA-2021-0006 | AAR FRA MEETING SUMMARY 10.14.2021 | Other | Summary (SUM) | 2021-12-08T05:00:00Z | 2021 | 12 | 2021-12-08T05:00:00Z | 2021-12-08T19:40:09Z | 0 | 0 | 0900006484eaac46 | ||
| FRA-2021-0006-0012 | FRA | Federal Railroad Administration - Information Collection Notices: Information Collection (ICRs FRA-2021-0006 | 6180.178 Railroad Trespasser Form June 9 | Other | Report | 2021-06-24T04:00:00Z | 2021 | 6 | 2021-06-24T04:00:00Z | 2021-06-24T15:58:26Z | 0 | 0 | 0900006484b80d9e | ||
| FRA-2021-0006-0011 | FRA | Federal Railroad Administration - Information Collection Notices: Information Collection (ICRs FRA-2021-0006 | 6180.178 Railroad Trespasser Form June 9 | Other | Report | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T04:00:00Z | 2021-06-15T16:43:36Z | 0 | 0 | 0900006484b80d99 | ||
| FRA-2021-0006-0004 | FRA | Federal Railroad Administration - Information Collection Notices: Information Collection (ICRs FRA-2021-0006 | U.S. DOT/FRA- Report of Railroad Trespasser Form | Other | Report | 2021-03-18T04:00:00Z | 2021 | 3 | 2021-03-18T04:00:00Z | 2021-03-18T17:44:22Z | 0 | 0 | 0900006484a704e9 |
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;