/**
* Copyright Super iPaaS Integration LLC, an IBM Company 2024
*/
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
}
