{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupCreate", "title": "GroupCreate", "type": "object", "description": "Request body for creating a new group", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Name of the new group (must be unique)" }, "description": { "type": "string", "description": "Description of the new group" } } }