Airbyte · Schema
Root Type for GroupResponse
Provides details of a single group
Data IntegrationETLELTOpen SourceData PipelineConnectorsData
Properties
| Name | Type | Description |
|---|---|---|
| groupId | string | The ID of the group |
| 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 |
| memberCount | integer | The number of members in the group |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GroupResponse",
"title": "Root Type for GroupResponse",
"description": "Provides details of a single group",
"type": "object",
"required": [
"groupId",
"name",
"organizationId",
"memberCount"
],
"properties": {
"groupId": {
"type": "string",
"format": "uuid",
"description": "The ID of the group"
},
"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"
},
"memberCount": {
"type": "integer",
"format": "int64",
"description": "The number of members in the group"
}
},
"x-speakeasy-component": true,
"x-speakeasy-entity": "Group",
"x-speakeasy-param-suppress-computed-diff": true
}