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

40 lines
789 B
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"index": true
},
"data": {
"type": "jsonObject"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
},
"terminateAt": {
"type": "datetime"
},
"target": {
"type": "linkParent"
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"target": {
"type": "belongsToParent"
}
},
"collection": {
"orderBy": "createdAt",
"order": "desc"
}
}