This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Metadata/entityDefs/Preferences.json
T
2013-11-06 13:31:09 +02:00

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"
}
}
}