Skip to content

Function: searchRules() ​

ts
function searchRules(opts?: {
  agency?: string;
  doc_type?: string;
  end_date?: string;
  keyword?: string;
  per_page?: number;
  significant?: boolean;
  start_date?: string;
}): Promise<FRSearchResult>;

Defined in: federal-register/sdk.ts:104

Search for proposed rules, final rules, and agency notices.

Parameters ​

ParameterType
opts{ agency?: string; doc_type?: string; end_date?: string; keyword?: string; per_page?: number; significant?: boolean; start_date?: string; }
opts.agency?string
opts.doc_type?string
opts.end_date?string
opts.keyword?string
opts.per_page?number
opts.significant?boolean
opts.start_date?string

Returns ​

Promise<FRSearchResult>

Released under the MIT License.