Airbyte · Schema

Root Type for 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
View JSON Schema on GitHub

JSON Schema

airbyte-groupmemberresponse-schema.json Raw ↑
{
  "$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
}