How set Nillable to false in JSON structure?

1
Hi there, I have a JSON structure and import mapping to map the input for my REST call like below JSON Structure { "request" : [ { "CustomerID" : "391", "Status": "Active" }, { "CustomerID" : "392", "Status": "Dormant" } ] } Import Mapping   I want to set Nillable to false for both attributes CustomerID and Status so that my request will not have null values. I could see that this option is disabled and Nillable is always set to true in Import mapping.  Is there a way to set this Nillable to false (or uncheck) in Import mapping?   Thanks in advance.
asked
1 answers
-5

Hi,

Mendix Boolean can only be true or false. You can try this by creating a microflow to set the null/nillable values to false

answered