/** * Result of parsing an OpenAPI/Swagger file. * Contains the raw structures extracted from the spec for further processing. */ export interface SwaggerAnalysis { tags: unknown[]; paths: Record; swagger: unknown; }