openapi: add currentParticipantIdentity to room member schema and response

This commit is contained in:
juancarmore 2026-01-14 17:08:25 +01:00
parent 7d462a8f08
commit 4689c866d6
2 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,7 @@ content:
canReadChat: true
canWriteChat: true
canChangeVirtualBackground: true
currentParticipantIdentity: 'bob-5678'
pagination:
isTruncated: false
maxItems: 10

View File

@ -56,3 +56,9 @@ properties:
description: >
The complete set of effective permissions for this member. This object is calculated by applying the customPermissions
overrides to the base role defaults, resulting in the final permissions that will be enforced.
currentParticipantIdentity:
type: string
example: 'alice_smith-1234'
description: |
The identity of the currently connected participant in the meeting associated with this room member.
This value is undefined if the member is not currently connected.