| 9 | * Result of scanning a single OpenAPI spec file |
| 10 | */ |
| 11 | export interface SpecScanResult { |
| 12 | /** Name of the scanned file */ |
| 13 | filename: string; |
| 14 | /** Unique identifier for the specification */ |
| 15 | specId: string; |
| 16 | /** The parsed and processed OpenAPI specification */ |
| 17 | spec: OpenAPIV3.Document; |
| 18 | /** Optional error if scanning failed */ |
| 19 | error?: Error; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Entry in the specification catalog |
nothing calls this directly
no outgoing calls
no test coverage detected