{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-group-create-request-structure.json", "name": "GroupCreateRequest", "description": "Request body for creating a group.", "type": "object", "properties": { "name": { "type": "string", "description": "Display name of the group.", "example": "New Team" }, "email": { "type": "string", "format": "email", "description": "Email address of the group.", "example": "newteam@example.com" }, "description": { "type": "string", "description": "Group description.", "example": "New team group" } }, "required": [ "name" ] }