openapi3-generator
Version:
Use your API OpenAPI 3 definition to generate code, documentation, and literally anything you need.
46 lines (40 loc) • 849 B
Markdown
{{#if renderSlug}}<a id="{{schema.slug}}" />{{/if}}
{{#unless hideTitle}}
{{#if schema.title}}
#### {{schema.title}}
{{else}}
#### {{schemaName}}
{{/if}}
{{/unless}}
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Accepted values</th>
</tr>
</thead>
<tbody>
{{#each schema.properties}}
{{> schemaProp prop=. propName=@key required=(isRequired ../schema @key) path=''}}
{{else}}
{{> schemaProp prop=schema propName=schemaName required=(isRequired ../schema @key) path=''}}
{{/each}}
</tbody>
</table>
{{#unless hideExamples}}
{{#if schema.example}}
##### Example
```json
{{{stringify schema.example}}}
```
{{else}}
{{#if schema.generatedExample}}
##### Example _(generated)_
```json
{{{stringify schema.generatedExample}}}
```
{{/if}}
{{/if}}
{{/unless}}