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/Export.json
T
Yuri Kuznetsov 3cb8deab2c export in idle
2022-01-12 14:07:38 +02:00

35 lines
740 B
JSON

{
"fields": {
"status": {
"type": "enum",
"options": ["Pending", "Running", "Success", "Failed"],
"default": "Pending"
},
"params": {
"type": "text"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"required": true
},
"notifyOnFinish": {
"type": "bool",
"default": false
},
"attachment": {
"type": "link",
"entity": "Attachment"
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
}
}
}