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/Modules/Crm/Resources/metadata/entityDefs/Reminder.json
T
2015-02-06 16:17:04 +02:00

41 lines
927 B
JSON

{
"fields": {
"remindAt": {
"type": "datetime",
"index": true
},
"startAt": {
"type": "datetime",
"index": true
},
"type": {
"type": "enum",
"options": ["Popup", "Email"],
"maxLength": 36,
"index": true,
"default": "Popup"
},
"seconds": {
"type": "enumInt",
"options": [0, 60, 120, 300, 600, 900, 1800, 3600, 7200, 10800, 18000, 86400],
"default": 0
},
"entityType": {
"type": "varchar",
"maxLength": 100
},
"entityId": {
"type": "varchar",
"maxLength": 50
},
"userId": {
"type": "varchar",
"maxLength": 50
}
},
"collection": {
"sortBy": "remindAt",
"asc": false
}
}