documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FAA-1998-4379" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Notice 2
- Supporting & Related Material 2
- Other 1
- Rule 1
agency_id 1
- FAA 6
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-1998-4379-0009 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | Notice of Delegation of Authority | Notice | Notice | 2000-04-13T04:00:00Z | 2000 | 4 | 2000-04-13T04:00:00Z | 2000-04-14T03:59:59Z | 2024-11-12T03:01:16Z | 1 | 0 | 09000064803254a8 | |
| FAA-1998-4379-0008 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | Final Regulatory Evaluation, Final Regulatory Flexibility Determination, International Trade Impact Assessment, and Unfunded Mandates Analysis | Supporting & Related Material | Analysis | 1999-06-18T04:00:00Z | 1999 | 6 | 2024-11-12T03:01:16Z | 0 | 0 | 09000064803254a7 | |||
| FAA-1998-4379-0007 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | Final Rule | Rule | Final Rule | 1999-06-18T04:00:00Z | 1999 | 6 | 1999-06-18T04:00:00Z | 1999-06-19T03:59:59Z | 2024-11-12T03:01:15Z | 1 | 0 | 09000064803254a6 | |
| FAA-1998-4379-0003 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | Public Contract Law Section - FAA Reply | Other | Reply | 1998-11-12T05:00:00Z | 1998 | 11 | 1998-11-12T05:00:00Z | 1998-11-13T04:59:59Z | 2024-11-12T03:01:16Z | 1 | 0 | 09000064803254a2 | |
| FAA-1998-4379-0002 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | U.S. DOT/FAA - Preliminary Regulatory Evaluation, Initial Regulatory Flexibility Determination, International Trade Impact Assessment, and Unfunded Mandates Analysis | Supporting & Related Material | Analysis | 1998-10-07T04:00:00Z | 1998 | 10 | 2024-11-12T03:01:15Z | 0 | 0 | 09000064803254a1 | |||
| FAA-1998-4379-0001 | FAA | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations FAA-1998-4379 | Procedures for Protests and Contract Disputes; Amendment of Equal Access to Justice Act Regulations - Notice of Proposed Rulemaking | Notice | Notice of Proposed Rulemaking (NPRM) | 1998-08-25T04:00:00Z | 1998 | 8 | 1998-08-25T04:00:00Z | 1998-09-01T03:59:59Z | 2024-11-12T03:01:00Z | 1 | 0 | 09000064803254a0 |
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;