mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
24 lines
570 B
HTML
24 lines
570 B
HTML
<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>
|
|
<small *ng-if="!response.schema"> N/A </small>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|