Problem exporting to JSON

0
I have the following JSON structure – {     "field_list_name": "FIELD_LIST",     "field_list_data_type": "CHAIN",     "fields": [         {             "field_name": "ONE",             "type": "STRING",             "position": 56         }     ],     "last_editor": "user.name@company.com",     "last_edit_time": "10:16 15-Aug-2019" } This is the domain model created by the export mapping And this is the export mapping When i export the FieldList entity to JSON I get this  {"field_list_name":"FIELD_LIST","field_list_data_type":"CHAIN","last_editor":"user.name@company.com","last_edit_time":"09:21 16-Aug-2019"} The fields are ignored. What am II doing wrong? If I import the JSON using an import mapping it works as expected.  
asked
2 answers
3

Is it possible that you don’t have any data for those fields so they are empty? If the value on the attrbibute s empty, Mendix will not provide the entry in the JSON

answered
0

This is a view of the field list and associated fields.

answered