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/ImportError.json
T
Yuri Kuznetsov 82b043adf6 rename
2022-08-30 08:48:15 +03:00

73 lines
1.8 KiB
JSON

{
"fields": {
"import": {
"type": "link",
"readOnly": true
},
"rowIndex": {
"type": "int",
"readOnly": true,
"tooltip": true
},
"exportRowIndex": {
"type": "int",
"readOnly": true
},
"lineNumber": {
"type": "int",
"readOnly": true,
"tooltip": true,
"notStorable": true,
"view": "views/import-error/fields/line-number"
},
"exportLineNumber": {
"type": "int",
"readOnly": true,
"tooltip": true,
"notStorable": true,
"view": "views/import-error/fields/line-number"
},
"type": {
"type": "enum",
"options": [
"",
"Validation",
"No-Access",
"Not-Found",
"Integrity-Constraint-Violation"
],
"readOnly": true
},
"validationFailures": {
"type": "jsonArray",
"readOnly": true,
"view": "views/import-error/fields/validation-failures"
},
"row": {
"type": "array",
"readOnly": true,
"displayAsList": true,
"doNotStoreArrayValues": true
}
},
"links": {
"import": {
"type": "belongsTo",
"entity": "Import",
"foreign": "errors",
"foreignName": "id"
}
},
"collection": {
"orderBy": "rowIndex"
},
"indexes": {
"rowIndex": {
"columns": ["rowIndex"]
},
"importRowIndex": {
"columns": ["importId", "rowIndex"]
}
}
}