POST Import Excel JSON Template
Hi,
I have been looking to import excel file in collibra and as per the API documentation, I have the following mapping template.
[
{
“resourceType”: “Asset”,
“identifier”: {
“name”: “${1}”,
“domain”: {
“name”: “${2}”,
“community”: {
“name”: “Some Community”
}
}
},
“attributes” : {
“00000000-0000-0000-0000-000000003115” : [ {
“value” : “${3}”
} ],
“00000000-0000-0000-0000-000000000222” : [ {
“value” : “${4}”
} ]
}
}
]
However, after import, the name and full name is given the same value. Is there any way to map name and full name separately here?
ankitachandra7439
Posted 2 years ago · Edited 1 year ago·Last reply 2 years ago
3 comments
ravi
·2 years ago · EditedHi Ankita,
You can use the display name
[
{
“resourceType”: “Asset”,
“identifier”: {
“name”: “${1}”,
“domain”: {
“name”: “${2}”,
“community”: {
“name”: “Some Community”
}
}
},
displayName: ${5},
“attributes” : {
“00000000-0000-0000-0000-000000003115” : [ {
“value” : “${3}”
} ],
“00000000-0000-0000-0000-000000000222” : [ {
“value” : “${4}”
} ]
}
}
]
ravi
·2 years ago · EditedHi Ankita,
You can use the display name
[
{
“resourceType”: “Asset”,
“identifier”: {
“name”: “${1}”,
“domain”: {
“name”: “${2}”,
“community”: {
“name”: “Some Community”
}
}
},
displayName: ${5},
“attributes” : {
“00000000-0000-0000-0000-000000003115” : [ {
“value” : “${3}”
} ],
“00000000-0000-0000-0000-000000000222” : [ {
“value” : “${4}”
} ]
}
}
]
ankitachandra7439
OP2 years ago · Edited(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)