| 78 | * Result of loading a schema |
| 79 | */ |
| 80 | export interface LoadSchemaResult { |
| 81 | /** Name of the schema */ |
| 82 | name: string; |
| 83 | /** Description of the schema */ |
| 84 | description: string; |
| 85 | /** The actual schema object */ |
| 86 | schema: OpenAPIV3.SchemaObject; |
| 87 | /** URI identifying the schema */ |
| 88 | uri: string; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Result of loading an operation |
nothing calls this directly
no outgoing calls
no test coverage detected