redoc/lib/components/ResponsesList/responses-list.html

23 lines
515 B
HTML
Raw Normal View History

2015-10-21 12:20:14 +03:00
<table class="inline">
<thead>
<tr>
<th colspan="3"> Responses </th>
</tr>
<tr>
<th> Response code </th>
<th> Description </th>
<th> Response schema </th>
</tr>
</thead>
<tbody>
<tr *ng-for="#response of data.responses">
<td>{{response.code}}</td>
<td>{{response.description}}</td>
<td>
<schema *ng-if="response.schema" class="schema type" pointer="{{response.pointer}}/schema">
</schema>
</td>
</tr>
</tbody>
</table>