diff --git a/docs/docs/idempotent.doDelete.html b/docs/docs/idempotent.doDelete.html index 20a53be..4b97939 100644 --- a/docs/docs/idempotent.doDelete.html +++ b/docs/docs/idempotent.doDelete.html @@ -50,6 +50,11 @@

doDelete

semantic alpsItemId + + userId + semantic + userId + diff --git a/docs/profile.xml b/docs/profile.xml index 6c394ea..825dc74 100644 --- a/docs/profile.xml +++ b/docs/profile.xml @@ -122,6 +122,7 @@ An unsafe idempotent action to delete a existing ALPS profile item. + diff --git a/docs/schema/request/doDelete.json b/docs/schema/request/doDelete.json index 3379c52..ad41360 100644 --- a/docs/schema/request/doDelete.json +++ b/docs/schema/request/doDelete.json @@ -8,9 +8,13 @@ "properties": { "id": { "type": "string" + }, + "userId": { + "$ref": "../def/user.json#/properties/id" } }, "required": [ - "id" + "id", + "userId" ] } diff --git a/docs/schema/request/example/doDelete.json b/docs/schema/request/example/doDelete.json index 372b3bb..db0f577 100644 --- a/docs/schema/request/example/doDelete.json +++ b/docs/schema/request/example/doDelete.json @@ -1,4 +1,5 @@ { "$schema": "../doDelete.json", - "id": "1" + "id": "1", + "userId": "ShioriAriki" }