{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RoleCreateRequest", "title": "RoleCreateRequest", "type": "object", "description": "Request body for creating a new role", "required": [ "role" ], "properties": { "role": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The role name" } } } } }