OpenAPIObject
inspired by https://github.com/metadevpro/openapi3-ts
interface OpenAPIObject {
openapi: string
info: InfoObject
servers?: ServerObject[]
paths: PathsObject
components?: ComponentsObject
security?: SecurityRequirementObject[]
tags?: TagObject[]
externalDocs?: ExternalDocumentationObject
}