EQL display responsability value

START WITH ChangeRequest
SELECT 
   Code,
   Description,
   DateRegistered,
   Attributes["Global", "Tijdelijke wijziging"].Value,
   Attributes["Global", "Risicoanalyse"].Value,
   Attributes["Global", "Regularisatiewijziging"].Value,
   Responsibilities.Person.FullName,
   Responsibilities.ResponsibilityType.Name,
   AuditDetails.Person.FirstName,
   AuditDetails.Person.Surname 
WHERE 
   Class.Code = 'BELV-M' 
ORDER BY 
   Code

Responsibilities.ResponsibilityType.Name, shows me for example "Change package creator"

I would like to display the the persons name instead of the type of responsability..

can anybody help me?