documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-1999-5102" and posted_year = 1999 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-1999-5102-0010 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Southern Pennsylvania Transportation Authority (SEPTA) - Additional Information | Other | Additional Information | 1999-10-22T04:00:00Z | 1999 | 10 | 1999-10-22T04:00:00Z | 1999-10-23T03:59:59Z | 2008-01-08T19:57:25Z | 0 | 0 | 090000648032a226 | |
| FRA-1999-5102-0008 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Commuter Railroad System Division - Letter in Opposition | Other | Letter(s) in Opposition | 1999-09-30T04:00:00Z | 1999 | 9 | 1999-09-30T04:00:00Z | 1999-10-02T03:59:59Z | 2008-01-08T20:00:09Z | 0 | 0 | 090000648032a234 | |
| FRA-1999-5102-0009 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Brotherhood of Maintenance of Way Employees/Commuter Railroad System Division - Letter in Response | Other | Letter(s) | 1999-09-30T04:00:00Z | 1999 | 9 | 1999-09-30T04:00:00Z | 1999-10-02T03:59:59Z | 2008-01-08T19:58:42Z | 0 | 0 | 090000648032a235 | |
| FRA-1999-5102-0007 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Brotherhood of Maintenance of Way Employes - Statement | Other | Statement | 1999-09-16T04:00:00Z | 1999 | 9 | 1999-09-16T04:00:00Z | 1999-09-17T03:59:59Z | 2008-01-08T19:57:25Z | 0 | 0 | 090000648032a233 | |
| FRA-1999-5102-0006 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Southern Pennsylvania Transportation Authority (SEPTA)-Transcript | Other | Transcript(s) | 1999-09-16T04:00:00Z | 1999 | 9 | 1999-09-16T04:00:00Z | 1999-09-17T03:59:59Z | 2008-01-08T19:59:47Z | 0 | 0 | 090000648032a232 | |
| FRA-1999-5102-0005 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Notice of Public Hearing; The Southeastern Pennsylvania Transportation Authority | Rule | Federal Register Publication | 1999-07-26T04:00:00Z | 1999 | 7 | 1999-07-26T04:00:00Z | 1999-07-27T03:59:59Z | 2008-01-08T19:59:47Z | 0 | 0 | 090000648032a231 | |
| FRA-1999-5102-0003 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Brotherhood of Maintenance of Way Employes - Objection | Other | Objection(s) | 1999-05-05T04:00:00Z | 1999 | 5 | 1999-05-05T04:00:00Z | 1999-05-06T03:59:59Z | 2008-01-08T20:00:09Z | 0 | 0 | 090000648032a22f | |
| FRA-1999-5102-0002 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Petition for Waiver of Compliance With Certain Provisions of 49 CFR 213.233 (c) Southeastern Pennsylvania Transportation Authority | Rule | Federal Register Publication | 1999-04-22T04:00:00Z | 1999 | 4 | 1999-04-22T04:00:00Z | 1999-04-23T03:59:59Z | 2008-01-08T19:57:25Z | 0 | 0 | 090000648032a22b | |
| FRA-1999-5102-0001 | FRA | Southern Pennsylvania Transportation Authority - Waiver Petition FRA-1999-5102 | Southern Pennsylvania Transportation Authority - Waiver Petition | Other | Waiver | 1999-01-12T05:00:00Z | 1999 | 1 | 1999-01-12T05:00:00Z | 1999-02-18T04:59:59Z | 2018-03-03T22:09:30Z | 0 | 0 | 090000648032a225 |
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;