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

59 lines
1.4 KiB
JSON

{
"fields": {
"entityType": {
"type": "enum",
"translation": "Global.scopeNames",
"required": true,
"readOnly": true
},
"status": {
"type": "enum",
"options": ["In Process", "Complete", "Failed"],
"readOnly": true,
"view": "views/fields/enum-styled",
"style": {
"Complete": "success",
"Failed": "danger"
}
},
"file": {
"type": "file",
"required": true,
"readOnly": true
},
"importedCount": {
"type": "int",
"readOnly": true,
"notStorable": true
},
"duplicateCount": {
"type": "int",
"readOnly": true,
"notStorable": true
},
"updatedCount": {
"type": "int",
"readOnly": true,
"notStorable": true
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
}
},
"collection": {
"orderBy": "createdAt",
"order": "desc"
}
}