Files
espocrm/application/Espo/Resources/metadata/entityDefs/ScheduledJobLogRecord.json
2026-01-19 17:46:06 +01: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"]
}
}
}