ilya_sapunov
12/21/2022, 4:58 PMmap(lambda x: md5(x['emailAddress']['address']), attendees)
I can’t do that after transfer, because I need anomized data in my DWH.
Is it possible?
Here’s my schema
"attendees": {
"type": "array",
"items": {
"type": [
"object",
"null"
],
"properties": {
"emailAddress": {
"type": [
"object"
],
"properties": {
"address": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
}
}
}
}
}
}