{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupMemberResponse", "title": "Root Type for GroupMemberResponse", "description": "Provides details of a single group member", "type": "object", "required": [ "memberId", "groupId", "userId", "userEmail", "userName" ], "properties": { "memberId": { "type": "string", "format": "uuid", "description": "The ID of the group membership" }, "groupId": { "type": "string", "format": "uuid", "description": "The ID of the group" }, "userId": { "type": "string", "format": "uuid", "description": "The ID of the user" }, "userEmail": { "type": "string", "format": "email", "description": "The email of the user" }, "userName": { "type": "string", "description": "The name of the user" } }, "x-speakeasy-component": true, "x-speakeasy-entity": "GroupMember", "x-speakeasy-param-suppress-computed-diff": true }