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
2018-10-22 15:11:06 +03:00

41 lines
955 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, 172800, 259200, 432000],
"default": 0
},
"entityType": {
"type": "varchar",
"maxLength": 100
},
"entityId": {
"type": "varchar",
"maxLength": 50
},
"userId": {
"type": "varchar",
"maxLength": 50
}
},
"collection": {
"orderBy": "remindAt",
"order": "desc"
}
}