Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions docs/docs/idempotent.doDelete.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ <h1>doDelete</h1>
<td>semantic</td>
<td>alpsItemId</td>
</tr>
<tr>
<td><a href="semantic.userId.html">userId</a></td>
<td>semantic</td>
<td>userId</td>
</tr>
</tbody>
</table></li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions docs/profile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
<descriptor id="doDelete" type="idempotent" rt="#Profile" title="Delete an existing ALPS profile item">
<doc format="markdown">An unsafe idempotent action to delete a existing ALPS profile item.</doc>
<descriptor href="#id" title="alpsItemId" />
<descriptor href="#userId" title="userId"/>
<link href="../schema/request/doDelete.json" rel="schema" title="JsonSchema file"/>
</descriptor>
</alps>
6 changes: 5 additions & 1 deletion docs/schema/request/doDelete.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
"properties": {
"id": {
"type": "string"
},
"userId": {
"$ref": "../def/user.json#/properties/id"
}
},
"required": [
"id"
"id",
"userId"
]
}
3 changes: 2 additions & 1 deletion docs/schema/request/example/doDelete.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"$schema": "../doDelete.json",
"id": "1"
"id": "1",
"userId": "ShioriAriki"
}