{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-group-response-structure.json", "name": "GroupResponse", "description": "Provides details of a single group", "type": "object", "properties": { "groupId": { "type": "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": "uuid", "description": "The ID of the organization the group belongs to" }, "memberCount": { "type": "int64", "description": "The number of members in the group" } }, "required": [ "groupId", "name", "organizationId", "memberCount" ] }