/**
 * Copyright IBM Corp. 2024, 2025
 */
import { PathModel } from "./swagger-api.model.js";

export type OpenAPIModel = {
    openapi: '3.0.0' | '3.0.1' | '3.0.2';
    paths: PathModel; //reused from swagger model for the required use case
}
