{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateGroupDto", "title": "UpdateGroupDto", "type": "object", "properties": { "name": { "type": "string", "maxLength": 256, "description": "The name of the Group.", "example": "Engineering" }, "description": { "type": [ "string", "null" ], "maxLength": 150, "description": "An optional description of the Group.", "example": "The engineering team" } } }