mirror of
https://github.com/langgenius/dify-docs.git
synced 2026-03-26 13:18:34 +07:00
Update partial_member_list schema to require user_id objects across OpenAPI docs (#623)
This commit is contained in:
@@ -2321,9 +2321,18 @@
|
||||
},
|
||||
"partial_member_list": {
|
||||
"type": "array",
|
||||
"description": "List of member IDs for 'partial_members' permission.",
|
||||
"description": "List of members for 'partial_members' permission.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
"type": "object",
|
||||
"required": [
|
||||
"user_id"
|
||||
],
|
||||
"properties": {
|
||||
"user_id": {
|
||||
"type": "string",
|
||||
"description": "User ID of the member."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2936,4 +2945,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2321,9 +2321,18 @@
|
||||
},
|
||||
"partial_member_list": {
|
||||
"type": "array",
|
||||
"description": "'partial_members'権限のメンバーIDリスト。",
|
||||
"description": "'partial_members'権限でアクセスできるメンバーのリスト。",
|
||||
"items": {
|
||||
"type": "string"
|
||||
"type": "object",
|
||||
"required": [
|
||||
"user_id"
|
||||
],
|
||||
"properties": {
|
||||
"user_id": {
|
||||
"type": "string",
|
||||
"description": "メンバーのユーザーID。"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2936,4 +2945,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2321,9 +2321,18 @@
|
||||
},
|
||||
"partial_member_list": {
|
||||
"type": "array",
|
||||
"description": "'partial_members' 权限的成员 ID 列表。",
|
||||
"description": "'partial_members' 权限可访问的成员列表。",
|
||||
"items": {
|
||||
"type": "string"
|
||||
"type": "object",
|
||||
"required": [
|
||||
"user_id"
|
||||
],
|
||||
"properties": {
|
||||
"user_id": {
|
||||
"type": "string",
|
||||
"description": "成员的用户 ID。"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2936,4 +2945,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user