MCPcopy Create free account
hub / github.com/ReAPI-com/mcp-openapi / SpecScanResult

Interface SpecScanResult

src/core/interfaces/ISpecScanner.ts:11–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 * Result of scanning a single OpenAPI spec file
10 */
11export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected