import { OpenAPIV3 } from 'openapi-types'

export const minimalOpenApiV3Document: OpenAPIV3.Document = {
  openapi: '3.0.0',
  info: {
    "version": "1.0.0",
    "title": "Test OpenApiv3 specification",
  },
  "paths": {
  }
}
