@us-legal-tools/ecfr-sdk
Version:
TypeScript SDK and MCP server for the eCFR (Electronic Code of Federal Regulations) API
50 lines (49 loc) • 1.44 kB
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 GetApiVersionerV1VersionsTitleTitleJsonParams = {
/**
* select content added on the supplied issue date
*/
'issue_date[on]'?: string;
/**
* select content added on or before the supplied issue date
*/
'issue_date[lte]'?: string;
/**
* select content added on or after the supplied issue date
*/
'issue_date[gte]'?: string;
/**
* Uppercase letter. 'A', 'B', 'C'
*/
subtitle?: string;
/**
* Roman Numerals and digits 0-9. 'I', 'X', '1'
*/
chapter?: string;
/**
* A SUBCHAPTER REQUIRES A CHAPTER. Uppercase letters with optional underscore or dash. 'A', 'B', 'I'
*/
subchapter?: string;
/**
* Uppercase letters with optional underscore or dash. 'A', 'B', 'I'
*/
part?: string;
/**
* A SUBPART REQUIRES A PART. Generally an uppercase letter. 'A', 'B', 'C'
*/
subpart?: string;
/**
* A SECTION REQUIRES A PART. Generally a number followed by a dot and another number. '121.1', '13.4', '1.9'
*/
section?: string;
/**
* AN APPENDIX REQUIRES A SUBTITLE, CHAPTER or PART. Multiple formats. 'A', 'III', 'App. A'
*/
appendix?: string;
};