{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-group-member-response-schema.json", "title": "GroupMemberResponse", "description": "Provides details of a single group member", "type": "object", "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" } }, "required": [ "memberId", "groupId", "userId", "userEmail", "userName" ] }