Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions _includes/content/rm-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ accepts: [
<tr>
<td>description</td>
<td>
Text description of the method, used by API documentation generators such as Swagger.
Text description of the method, used by API documentation generators such as OpenAPI (formerly Swagger).
You can put long strings in an array if needed (see note below).
</td>
<td> </td>
Expand All @@ -62,11 +62,18 @@ accepts: [
<tr>
<td>notes</td>
<td>
Additional notes, used by API documentation generators like Swagger.
Additional notes, used by OpenAPI (formerly Swagger).
You can put long strings in an array if needed (see note below).
</td>
<td> </td>
</tr>
<tr>
<td>documented</td>
<td>
If set to <code>false</code>, this method will not be present in generated OpenAPI (formerly Swagger) documentation.
</td>
<td> </td>
</tr>
<tr>
<td>returns</td>
<td>
Expand Down Expand Up @@ -173,7 +180,7 @@ The following table describes the properties of each individual argument.
<td>description</td>
<td>String or Array</td>
<td>
A text description of the argument. This is used by API documentation generators like Swagger.
A text description of the argument. This is used by API documentation generators like OpenAPI (formerly Swagger).
You can put long strings in an array if needed (see note above).
</td>
</tr>
Expand Down Expand Up @@ -218,6 +225,11 @@ The following table describes the properties of each individual argument.
<strong>Note</strong>: This value will not be passed into remote methods function if argument is not present.
</td>
</tr>
<tr>
<td>documented</td>
<td>Boolean</td>
<td>If set to <code>false</code>, this parameter will not be present in generated OpenAPI (formerly Swagger) documentation.</td>
</tr>
</tbody>
</table>

Expand Down