% var params = entity.parameters; %>
<%= param.name %>
<%= param.type %>
<%
} else if(
!_.isUndefined( param.type )
&&
!_.isUndefined( param.schema )
&&
!_.isUndefined(param.schema.type)
) {
%>
<%= param.schema.type %> (body)
<% } else if( _.isUndefined( param.type ) ) { %>
N/A
<% } %>
<%= param.description.replace(/(?:\r\n|\r|\n)/g, '
') %>
Provided in the <%=param.in%>
of the request
<%= formatJSONRaw( JSON.stringify( param.schema ) ).trim() %>