JSON file loading example
Learn about how the Reltio Data Loader transforms JSON file objects to a flat file when you load a JSON file.
Transform process
Example
Check out this example of how the Data Loader transforms the JSON data into a flat table:
JSON file to be transformed.
[
{
"crosswalks": [
{
"value": "609-854-7156",
"type": "configuration/sources/HMS"
}
],
"attributes": {
"LastName": [
{
"value": "Fritz"
}
],
"FirstName": [
{
"value": "An"
}
]
},
"type": "configuration/entityTypes/HCP"
},
{
"crosswalks": [
{
"value": "203-564-1543",
"type": "configuration/sources/HMS"
}
],
"attributes": {
"LastName": [
{
"value": "Layous"
}
],
"FirstName": [
{
"value": "Ma"
}
]
},
"type": "configuration/entityTypes/HCP"
},
{
"crosswalks": [
{
"value": "203-564-1543",
"type": "configuration/sources/HMS"
}
],
"attributes": {
"LastName": [
{
"value": "Rantanen"
}
],
"FirstName": [
{
"value": "Ba"
}
]
},
"type": "configuration/entityTypes/HCP"
}
]
Resulting flat table
type_ | type_crosswalks_1 | value_FirstName_attributes_1 | value_LastName_attributes_1 | value_crosswalks_1 |
configuration/entityTypes/HCP | configuration/sources/HMS | An | Fritz | 609-555-0197 |
configuration/entityTypes/HCP | configuration/sources/HMS | Ma | Layous | 203-555-0543 |
configuration/entityTypes/HCP | configuration/sources/HMS | Ba | Rantanen | 203-555-0543 |