{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/account-management-api-group-create-request-schema.json", "title": "GroupCreateRequest", "description": "Request body for creating or updating a group.", "type": "object", "properties": { "name": { "type": "string", "description": "The display name of the group.", "example": "Production Service" }, "description": { "type": "string", "description": "An optional description of the group's purpose or access scope.", "example": "Example description." } }, "required": [ "name" ] }