documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "IHS_FRDOC_0001" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IHS_FRDOC_0001-0122 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Project Waivers of the American Recovery and Reinvestment Act | Notice | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T05:00:00Z | 2011-12-23T13:41:38Z | 2011-32782 | 0 | 0 | 0900006480f88918 | ||
| IHS_FRDOC_0001-0121 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Office of Direct Service and Contracting Tribes Funding Opportunity | Notice | 2011-07-28T04:00:00Z | 2011 | 7 | 2011-07-28T04:00:00Z | 2011-07-28T12:56:58Z | 2011-19144 | 0 | 0 | 0900006480ece3fd | ||
| IHS_FRDOC_0001-0120 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Epidemiology Program for American Indian-Alaska Native Tribes and Urban Indian Communities; Correction | Notice | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T04:00:00Z | 2011-06-16T12:20:36Z | 2011-14794 | 0 | 0 | 0900006480e5125c | ||
| IHS_FRDOC_0001-0119 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Epidemiology Program for American Indian/Alaska Native Tribes and Urban Indian Communities | Notice | 2011-06-08T04:00:00Z | 2011 | 6 | 2011-06-08T04:00:00Z | 2011-06-08T13:16:03Z | 2011-14131 | 0 | 0 | 0900006480e400cb | ||
| IHS_FRDOC_0001-0118 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Reimbursement Rates for Calendar Year 2011 | Notice | 2011-05-02T04:00:00Z | 2011 | 5 | 2011-05-02T04:00:00Z | 2011-05-02T13:44:12Z | 2011-10623 | 0 | 0 | 0900006480c3db03 | ||
| IHS_FRDOC_0001-0117 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Memorandum of Agreement | Notice | 2011-03-23T04:00:00Z | 2011 | 3 | 2011-03-23T04:00:00Z | 2011-03-23T18:34:56Z | 2011-06826 | 0 | 0 | 0900006480c0ec54 | ||
| IHS_FRDOC_0001-0116 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Recipients of Indian Health Scholarships under the Indian Health Scholarship Program | Notice | 2011-03-02T05:00:00Z | 2011 | 3 | 2011-03-02T05:00:00Z | 2011-03-02T13:46:42Z | 2011-04665 | 0 | 0 | 0900006480bfcbc1 | ||
| IHS_FRDOC_0001-0115 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Limited Competition, Continuation Grants: Office of Urban Indian Health Programs | Notice | 2011-02-22T05:00:00Z | 2011 | 2 | 2011-02-22T05:00:00Z | 2011-02-22T14:02:29Z | 2011-03856 | 0 | 0 | 0900006480bf4f57 | ||
| IHS_FRDOC_0001-0113 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Indian Health Professions Student Programs | Notice | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-15T05:00:00Z | 2011-02-15T13:21:10Z | 2011-03291 | 0 | 0 | 0900006480bef57a | ||
| IHS_FRDOC_0001-0114 | IHS | Recently Posted IHS Rules and Notices. IHS_FRDOC_0001 | Repayment Program for Health Professions Educational Loans | Notice | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-15T05:00:00Z | 2011-02-15T13:22:00Z | 2011-03290 | 0 | 0 | 0900006480bef5cd |
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;