42 lines
955 B
JSON
Executable File
42 lines
955 B
JSON
Executable File
{
|
|
"fields": {
|
|
"timeZone": {
|
|
"type": "enum"
|
|
},
|
|
"dateFormat": {
|
|
"type": "enum",
|
|
"options": ["MM/DD/YYYY", "YYYY-MM-DD", "DD.MM.YYYY"],
|
|
"default": "MM/DD/YYYY"
|
|
},
|
|
"timeFormat": {
|
|
"type": "enum",
|
|
"options": ["HH:mm", "hh:mm A", "hh:mm a"],
|
|
"default": "HH:mm"
|
|
},
|
|
"weekStart": {
|
|
"type": "enumInt",
|
|
"options": [0, 1],
|
|
"default": 0
|
|
},
|
|
"thousandSeparator": {
|
|
"type": "varchar",
|
|
"default": ","
|
|
},
|
|
"decimalMark": {
|
|
"type": "varchar",
|
|
"default": ".",
|
|
"required": true
|
|
},
|
|
"defaultCurrency": {
|
|
"type": "enum",
|
|
"default": "USD"
|
|
}
|
|
},
|
|
"links": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"entity": "User"
|
|
}
|
|
}
|
|
}
|