Airbyte · Schema

Root Type for GroupCreateRequest

Request body for creating a group

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
name string The name of the group
description string Optional description of the group
organizationId string The ID of the organization the group belongs to
View JSON Schema on GitHub

JSON Schema

airbyte-groupcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupCreateRequest",
  "title": "Root Type for GroupCreateRequest",
  "description": "Request body for creating a group",
  "required": [
    "name",
    "organizationId"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the group"
    },
    "description": {
      "type": "string",
      "nullable": true,
      "description": "Optional description of the group"
    },
    "organizationId": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the organization the group belongs to"
    }
  },
  "x-speakeasy-component": true,
  "x-speakeasy-entity": "Group",
  "x-speakeasy-param-suppress-computed-diff": true
}