| 40 | * Entry representing an OpenAPI operation |
| 41 | */ |
| 42 | export interface SpecOperationEntry { |
| 43 | /** The path of the operation */ |
| 44 | path: string; |
| 45 | /** HTTP method (GET, POST, etc.) */ |
| 46 | method: string; |
| 47 | /** Optional description of the operation */ |
| 48 | description?: string; |
| 49 | /** Unique identifier for the operation */ |
| 50 | operationId?: string; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Entry representing a schema in the OpenAPI spec |
nothing calls this directly
no outgoing calls
no test coverage detected