When using dataType: decimal the api seems to return a string instead of a number. in model.json: ``` "property1": { "type": "number", "postgresql": { "dataType": "decimal" } "property2": { "type": "number" } ``` from the api: ``` "property1": "30.3", "property2": 4 ```