documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "GSA-FTR-2006-0006" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-FTR-2006-0006-0001 | GSA | 2006 GSA Federal Travel Regulation Notices GSA-FTR-2006-0006 | FTR Per Diem Bulletin 06-04, Revised CONUS per diem rates | Notice | Notice of Per Diem Rates | 2006-10-03T04:00:00Z | 2006 | 10 | 2006-10-03T04:00:00Z | 2017-09-18T14:28:35Z | 06-00613 | 0 | 0 | 090000648011938b | |
| GSA-FTR-2006-0006-0004 | GSA | 2006 GSA Federal Travel Regulation Notices GSA-FTR-2006-0006 | Notice of Per Diem Bulletin 07-1, Maximum Per Diem Rates for the Continental United States (CONUS) | Notice | General Notice | 2006-08-02T20:36:27Z | 2006 | 8 | 2006-08-02T20:36:27Z | 2017-09-18T14:28:35Z | E6-12467 | 0 | 0 | 09000064801acb5d | |
| GSA-FTR-2006-0006-0003 | GSA | 2006 GSA Federal Travel Regulation Notices GSA-FTR-2006-0006 | National Travel Forum 2006: Where the Travel Stars Shine (NTF 2006) | Notice | General Notice | 2006-04-14T20:33:54Z | 2006 | 4 | 2006-04-14T20:33:54Z | 2017-09-18T14:28:35Z | E6-05544 | 0 | 0 | 090000648015d53c | |
| GSA-FTR-2006-0006-0002 | GSA | 2006 GSA Federal Travel Regulation Notices GSA-FTR-2006-0006 | Federal Travel Regulation (FTR) Notice of Maximum Per Diem Bulletin 06-06; Maximum Per Diem Rates for the States of California, Georgia, Illinois, New York, North Carolina, Ohio, South Carolina and Washington | Notice | Notice of Bulletins | 2006-04-11T20:30:10Z | 2006 | 4 | 2006-04-11T20:30:10Z | 2017-09-18T14:28:35Z | E6-05322 | 0 | 0 | 090000648015a749 |
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;