| 64 | * Summary information about an available spec |
| 65 | */ |
| 66 | export interface SpecCatalogEntry { |
| 67 | /** URI identifying the specification */ |
| 68 | uri: SpecUri; |
| 69 | /** Optional description of the specification */ |
| 70 | description?: string; |
| 71 | /** List of operations in the specification */ |
| 72 | operations: SpecOperationEntry[]; |
| 73 | /** List of schemas in the specification */ |
| 74 | schemas: SpecSchemaEntry[]; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Result of loading a schema |
nothing calls this directly
no outgoing calls
no test coverage detected