passportData = {
let names = ['b', 'bob', 'bob-dream', 'bob-dream-aries']
let uniqueIds = ['NO14hzv0CbGqK0PJx_OhK']
let emails = ['bob@email.com', 'b@mail.io']
let handles = [{service: "github", id: "mullojo"}]
let verifications = [{type: 'email', key: 'bob@email.com', verif: 'verifNetHash2323r23fsfee'}]
let nameList = names.map(name => {return {name}})
let uidList = uniqueIds.map(uid => {return {uid}})
let emailList = emails.map(email => {return {email}})
let handleList = handles.map(handle => {return {handle}})
let verifList = verifications.map(verif => {return {verif}})
let leafs = nameList.concat(uidList).concat(emailList).concat(handleList).concat(verifList)
return leafs;
}