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/Resources/metadata/entityDefs/ScheduledJobLogRecord.json
T
2018-10-22 15:11:06 +03:00

38 lines
774 B
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"readOnly": true
},
"status": {
"type": "varchar",
"readOnly": true
},
"executionTime": {
"type": "datetime",
"readOnly": true
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"scheduledJob": {
"type": "link"
},
"target": {
"type": "linkParent"
}
},
"links": {
"scheduledJob": {
"type": "belongsTo",
"entity": "ScheduledJob"
}
},
"collection": {
"orderBy": "executionTime",
"order": "desc"
}
}