getV1Data();
if (fieldsMap != null) {
for(Map.Entry<String, Object> entry : fieldsMap.entrySet()){
AttributeDefinition entryDef = findAttributeDefinition(entry.getKey());
if (entryDef != null) {
if (entryDef.getRelationType().equals("select")) {
addRelation(entryDef, assetTemplate, entry.getValue());
} else {
addAttribute(entryDef, assetTemplate, entry.getValue());
}
} else {