Airbyte · Schema

Root Type for GroupMemberAddRequest

Request body for adding a member to a group

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
userId string The ID of the user to add to the group
View JSON Schema on GitHub

JSON Schema

airbyte-groupmemberaddrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupMemberAddRequest",
  "title": "Root Type for GroupMemberAddRequest",
  "description": "Request body for adding a member to a group",
  "required": [
    "userId"
  ],
  "type": "object",
  "properties": {
    "userId": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the user to add to the group"
    }
  },
  "x-speakeasy-component": true,
  "x-speakeasy-entity": "GroupMember",
  "x-speakeasy-param-suppress-computed-diff": true
}