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

Interface SpecUri

src/core/interfaces/ISpecService.ts:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28 * or apis://{specId}/schemas/{schemaName}
29 */
30export interface SpecUri {
31 /** Unique identifier for the specification */
32 specId: string;
33 /** Type of the URI target */
34 type: "operation" | "schema" | "specification";
35 /** Identifier within the type (e.g., operationId or schemaName) */
36 identifier: string;
37}
38
39/**
40 * Entry representing an OpenAPI operation

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected