Problem
1. Loading using JSON-generator-entity sends raw values as "UNKNOWN" for some fields like gender which are not getting loaded into Reltio.
2. "UNKNOWN" values are present in the CSV file but do not show up in the converted JSON file, generated using the JSON-generator-entity jar.
Solution
Code validates for attributes with Value" UNKNOWN" and if this value is present, it skips that attribute (this is working as expected)
Code also validates for values like null, UNKNOWN, and if such values are present, it skips those attributes and you will not see them in the generated JSON file.
Though you can define value in the .properties file as =unknown and it will work. When that value is used, attributes will be present in the generated JSON.
Example:
...
Title=Title
Gender=unknown
...
Comments
Please sign in to leave a comment.