Airbyte · JSON Structure

Airbyte Group Member Response Structure

Provides details of a single group member

Type: object Properties: 5 Required: 5
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

GroupMemberResponse is a JSON Structure definition published by Airbyte, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

memberId groupId userId userEmail userName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-group-member-response-structure.json",
  "name": "GroupMemberResponse",
  "description": "Provides details of a single group member",
  "type": "object",
  "properties": {
    "memberId": {
      "type": "uuid",
      "description": "The ID of the group membership"
    },
    "groupId": {
      "type": "uuid",
      "description": "The ID of the group"
    },
    "userId": {
      "type": "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"
  ]
}