documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
14 rows where agency_id = "LSC", document_type = "Notice" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| LSC-2006-0021-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-12-14T05:00:00Z | 2006 | 12 | 2006-12-14T05:00:00Z | 2006-12-14T12:06:52Z | 06-09714 | 0 | 0 | 09000064801ec177 | |||
| LSC-2006-0020-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-11-21T05:00:00Z | 2006 | 11 | 2006-11-21T05:00:00Z | 2006-11-21T12:07:21Z | 06-09347 | 0 | 0 | 09000064801e3dc2 | |||
| LSC-2006-0019-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-11-17T05:00:00Z | 2006 | 11 | 2006-11-17T05:00:00Z | 2006-11-17T12:07:30Z | 06-09283 | 0 | 0 | 09000064801e2c29 | |||
| LSC-2006-0016-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-10-23T04:00:00Z | 2006 | 10 | 2006-10-23T04:00:00Z | 2006-10-23T11:06:14Z | 06-08853 | 0 | 0 | 09000064801d8768 | |||
| LSC-2006-0015-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-10-23T04:00:00Z | 2006 | 10 | 2006-10-23T04:00:00Z | 2006-10-23T11:05:28Z | 06-08857 | 0 | 0 | 09000064801d872b | |||
| LSC-2006-0014-0001 | LSC | Notice of Intent To Award--Grant Awards for the Provision of Civil Legal Services to Eligible Low-Income Clients Beginning January 1, 2007 | Notice | 2006-10-13T04:00:00Z | 2006 | 10 | 2006-10-13T04:00:00Z | 2006-10-13T11:11:21Z | 06-08654 | 0 | 0 | 09000064801d51af | |||
| LSC-2006-0013-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-09-25T04:00:00Z | 2006 | 9 | 2006-09-25T04:00:00Z | 2006-09-25T11:09:28Z | 06-08204 | 0 | 0 | 09000064801ce1a9 | |||
| LSC-2006-0012-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-09-12T04:00:00Z | 2006 | 9 | 2006-09-12T04:00:00Z | 2006-09-12T11:07:16Z | 06-07619 | 0 | 0 | 09000064801c9b9a | |||
| LSC-2006-0010-0001 | LSC | Request for Comments--LSC Budget Request for FY 2008 | Notice | 2006-08-10T04:00:00Z | 2006 | 8 | 2006-08-10T04:00:00Z | 2006-09-02T20:13:44Z | E6-13108 | 0 | 0 | 09000064801b3b9f | |||
| LSC-2006-0009-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-07-25T04:00:00Z | 2006 | 7 | 2006-07-25T04:00:00Z | 2006-09-02T20:13:42Z | 06-06470 | 0 | 0 | 09000064801a5d17 | |||
| LSC-2006-0008-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-05-16T04:00:00Z | 2006 | 5 | 2006-05-16T04:00:00Z | 2006-09-02T20:13:40Z | 06-04588 | 0 | 0 | 0900006480172e44 | |||
| LSC-2006-0006-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-24T04:00:00Z | 2006-09-02T20:13:37Z | 06-03888 | 0 | 0 | 0900006480163ad6 | |||
| LSC-2006-0005-0001 | LSC | Notice of Availability of Calendar Year 2007 Competitive Grant Funds | Notice | 2006-04-17T04:00:00Z | 2006 | 4 | 2006-04-17T04:00:00Z | 2006-09-02T20:13:36Z | 06-03648 | 0 | 0 | 090000648015e9f1 | |||
| LSC-2006-0001-0001 | LSC | Meetings; Sunshine Act | Notice | 2006-01-20T05:00:00Z | 2006 | 1 | 2006-01-20T05:00:00Z | 2006-09-02T20:13:29Z | 06-00549 | 0 | 0 | 09000064801176d2 |
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;