| 28 | * or apis://{specId}/schemas/{schemaName} |
| 29 | */ |
| 30 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected