Files
espocrm/application/Espo/Resources/metadata/entityDefs/Export.json
2026-01-19 17:46:06 +01:00

35 lines
774 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"
}
}
}