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
2019-09-20 16:33:21 +03:00

50 lines
1.1 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"readOnly": true
},
"status": {
"type": "enum",
"readOnly": true,
"options": ["Success", "Failed"],
"style": {
"Success": "success",
"Failed": "danger"
}
},
"executionTime": {
"type": "datetime",
"readOnly": true,
"hasSeconds": true
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"scheduledJob": {
"type": "link"
},
"target": {
"type": "linkParent"
}
},
"links": {
"scheduledJob": {
"type": "belongsTo",
"entity": "ScheduledJob"
}
},
"collection": {
"orderBy": "executionTime",
"order": "desc"
},
"indexes": {
"scheduledJobIdExecutionTime": {
"type": "index",
"columns": ["scheduledJobId", "executionTime"]
}
}
}