Airbyte · Schema
GroupMemberResponse
Provides details of a single group member
Data IntegrationETLELTOpen SourceData PipelineConnectorsData
Properties
| Name | Type | Description |
|---|---|---|
| memberId | string | The ID of the group membership |
| groupId | string | The ID of the group |
| userId | string | The ID of the user |
| userEmail | string | The email of the user |
| userName | string | The name of the user |
JSON Schema
{
"$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"
]
}