Well, your JSON structure is invalid. I am not sure how you are creating this. The following would be the proper JSON structure to do this.
{
"properties":[
{
"objectType":"Customer",
"labels":[
{
"language":"en",
"value":"test"
}
]
}
]
}
Thats mostly it. You can create import mapping with 2 ways.
Method 1:
Method 2:
NOTE: if you are using the exact JSON as above and allow Mendix to create entities, you might get few entities that are not relevant for you. But to keep the structure intact, Mendix helps you. If you got with method 2, you will get the JSON as you need except “{ "properties": “ and its relevant “}” bracket, which can also be handled with String concatenation.