{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateRoleDto", "title": "UpdateRoleDto", "type": "object", "properties": { "name": { "type": "string", "maxLength": 48, "description": "A descriptive name for the role.", "example": "Super Administrator" }, "description": { "type": [ "string", "null" ], "maxLength": 150, "description": "An optional description of the role.", "example": "Full administrative access to all resources" } } }