Open
Description
Shrinked OpenAPI specification for Generative AI of backend server.
In other worlds, special document type for backend vibe coding, using AI function calling (or structured output).
The new type's name would be OpenApiGenerative
.
export namespace OpenApiGenerative {
export interface IDocument {}
export interface IOperation {}
export interface IParameter {}
export interface IBody {}
export interface IResponse {}
export function transform(doc: IDocument): OpenApi.IDocument;
}