documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "AHRQ_FRDOC_0001" and posted_year = 2023 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), 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AHRQ_FRDOC_0001-0972 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-03-29T04:00:00Z | 2023 | 3 | 2023-03-29T04:00:00Z | 2023-05-31T03:59:59Z | 2023-06-01T01:00:21Z | 2023-06421 | 0 | 0 | 0900006485883d90 | |
| AHRQ_FRDOC_0001-0971 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Requests for Nominations: National Advisory Council for Healthcare Research and Quality | Notice | 2023-03-28T04:00:00Z | 2023 | 3 | 2023-03-28T04:00:00Z | 2023-03-28T18:48:50Z | 2023-06332 | 0 | 0 | 090000648587db98 | ||
| AHRQ_FRDOC_0001-0970 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Request for Information: Potential Consumer Assessment of Healthcare Providers and Systems Survey on Prenatal and Childbirth Care Experiences in Ambulatory and Inpatient Settings | Notice | 2023-03-23T04:00:00Z | 2023 | 3 | 2023-03-31T18:18:01Z | 2023-05988 | 0 | 0 | 0900006485838b86 | |||
| AHRQ_FRDOC_0001-0969 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Supplemental Evidence and Data Request on Genitourinary Syndrome of Menopause | Notice | 2023-03-09T05:00:00Z | 2023 | 3 | 2023-03-09T05:00:00Z | 2023-03-09T13:22:27Z | 2023-04800 | 0 | 0 | 0900006485781da7 | ||
| AHRQ_FRDOC_0001-0968 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Meetings: National Research Service Award Institutional Research Training Grant | Notice | 2023-03-03T05:00:00Z | 2023 | 3 | 2023-03-03T05:00:00Z | 2023-03-03T22:04:36Z | 2023-04414 | 0 | 0 | 090000648574bbd8 | ||
| AHRQ_FRDOC_0001-0967 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-03-02T05:00:00Z | 2023 | 3 | 2023-03-02T05:00:00Z | 2023-04-04T03:59:59Z | 2023-04-05T01:01:04Z | 2023-04220 | 0 | 0 | 090000648573e1c5 | |
| AHRQ_FRDOC_0001-0966 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Supplemental Evidence and Data Request: Behavioral Interventions for Migraine Prevention | Notice | 2023-02-17T05:00:00Z | 2023 | 2 | 2023-02-17T05:00:00Z | 2023-02-17T12:59:59Z | 2023-03406 | 0 | 0 | 09000064856b70d4 | ||
| AHRQ_FRDOC_0001-0965 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Meetings: Software Developers on the Common Formats for Patient Safety Data Collection | Notice | 2023-02-17T05:00:00Z | 2023 | 2 | 2023-02-17T05:00:00Z | 2023-02-17T12:59:50Z | 2023-03328 | 0 | 0 | 09000064856b70ce | ||
| AHRQ_FRDOC_0001-0964 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Meetings: National Advisory Council | Notice | 2023-02-09T05:00:00Z | 2023 | 2 | 2023-02-09T05:00:00Z | 2023-02-09T13:20:14Z | 2023-02724 | 0 | 0 | 0900006485643014 | ||
| AHRQ_FRDOC_0001-0963 | AHRQ | Recently Posted AHRQ Rules and Notices. AHRQ_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-01-18T05:00:00Z | 2023 | 1 | 2023-01-18T05:00:00Z | 2023-02-18T04:59:59Z | 2023-02-10T02:01:27Z | 2023-00796 | 0 | 0 | 09000064855f4cfb |
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;