documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "GSA-PRIVACYACT-2010-0015" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-PRIVACYACT-2010-0015-0010 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Revised Privacy Act System of Records | Notice | General Notice | 2009-09-10T04:00:00Z | 2009 | 9 | 2009-09-10T04:00:00Z | 2011-02-24T15:55:42Z | E9-21921 | 0 | 0 | 0900006480a20268 | |
| GSA-PRIVACYACT-2010-0015-0009 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Notice of New System of Records | Notice | General Notice | 2009-08-10T04:00:00Z | 2009 | 8 | 2009-08-10T04:00:00Z | 2011-02-24T15:55:11Z | E9-19102 | 0 | 0 | 0900006480a04fb1 | |
| GSA-PRIVACYACT-2010-0015-0008 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Revised Privacy Act System of Records | Notice | General Notice | 2009-06-23T04:00:00Z | 2009 | 6 | 2009-06-23T04:00:00Z | 2011-02-24T15:54:41Z | E9-14639 | 0 | 0 | 09000064809d652b | |
| GSA-PRIVACYACT-2010-0015-0007 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Notice of Updated Systems of Records; Correction | Notice | General Notice | 2009-06-12T04:00:00Z | 2009 | 6 | 2009-06-12T04:00:00Z | 2011-02-24T15:54:12Z | E9-13830 | 0 | 0 | 09000064809cdaa6 | |
| GSA-PRIVACYACT-2010-0015-0006 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Notice of Updated Systems of Records | Notice | General Notice | 2009-06-03T04:00:00Z | 2009 | 6 | 2009-06-03T04:00:00Z | 2011-02-24T15:53:45Z | E9-12951 | 0 | 0 | 09000064809c4166 | |
| GSA-PRIVACYACT-2010-0015-0002 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Revised Privacy Act System of Records | Notice | Environment Impact Statemen | 2009-05-28T04:00:00Z | 2009 | 5 | 2009-05-28T04:00:00Z | 2011-02-24T15:51:22Z | E9-12372 | 0 | 0 | 09000064809bbe11 | |
| GSA-PRIVACYACT-2010-0015-0001 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act of 1974; Notice of new System of Records | Notice | Environment Impact Statemen | 2009-05-07T04:00:00Z | 2009 | 5 | 2009-05-07T04:00:00Z | 2011-02-24T15:45:24Z | E9-10411 | 0 | 0 | 090000648097c180 | |
| GSA-PRIVACYACT-2010-0015-0005 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act; Systems of Records | Notice | General Notice | 2009-04-10T04:00:00Z | 2009 | 4 | 2009-04-10T04:00:00Z | 2011-02-24T15:53:03Z | E9-08215 | 0 | 0 | 090000648094e27b | |
| GSA-PRIVACYACT-2010-0015-0004 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act; Systems of Records | Notice | General Notice | 2009-04-10T04:00:00Z | 2009 | 4 | 2009-04-10T04:00:00Z | 2011-02-24T15:52:30Z | E9-08214 | 0 | 0 | 090000648094e208 | |
| GSA-PRIVACYACT-2010-0015-0003 | GSA | 2009 GSA Privacy Act Notices GSA-PRIVACYACT-2010-0015 | Privacy Act; Systems of Records | Notice | General Notice | 2009-02-04T05:00:00Z | 2009 | 2 | 2009-02-04T05:00:00Z | 2011-02-24T15:51:56Z | E9-02326 | 0 | 0 | 0900006480845cfb |
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;