@us-legal-tools/ecfr-sdk
Version:
TypeScript SDK and MCP server for the eCFR (Electronic Code of Federal Regulations) API
24 lines (23 loc) • 903 B
TypeScript
/**
* Generated by orval v7.10.0 🍺
* Do not edit manually.
* eCFR SDK
* TypeScript SDK and Model Context Protocol server for the Electronic Code of Federal Regulations (eCFR) API
* OpenAPI spec version: 1.0.0
*/
export type GetApiSearchV1Results200Meta = {
/** description of the search results */
description?: string;
/** current page of results */
current_page?: number;
/** total count of matching results across all pages */
total_count?: number;
/** total number of pages in the search results */
total_pages?: number;
/** the maximum score of any match in the search */
max_score?: number;
/** the minimum date of all returned results (returned when paginate_by=date option is provided) */
min_date?: string;
/** the maximum date of all returned results (returned when paginate_by=date option is provided) */
max_date?: string;
};