All Downloads are FREE. Search and download functionalities are using the official Maven repository.

template.apispec.ftl Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
<#-- @formatter:off -->
<#if apiSpecType == 'raml'>
#%RAML 1.0
title: ${artifactId}
version: ${apiSpecVersion}
<#elseif apiSpecType == 'oas2json'>
{
    "swagger": "2.0",
    "info": {
        "version": "${apiSpecVersion}",
        "title": "${artifactId}"
    },
    "paths": {}
}
<#elseif apiSpecType == 'oas2yaml'>
swagger: "2.0"
info:
    version: ${apiSpecVersion}
    title: ${artifactId}
paths: {}
<#elseif apiSpecType == 'oas3json'>
{
    "openapi": "3.0.0",
    "info": {
        "version": "${apiSpecVersion}",
        "title": "oas3json"
    },
    "paths": {}
}
<#elseif apiSpecType == 'oas3yaml'>
openapi: "3.0.0"
info:
    version: ${apiSpecVersion}
    title: ${artifactId}
paths: {}

<#-- @formatter:on -->




© 2015 - 2024 Weber Informatics LLC | Privacy Policy