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/Metadata/entityDefs/Attachment.json
T
2013-11-06 13:31:09 +02:00

58 lines
1.2 KiB
JSON
Executable File

{
"fields": {
"name": {
"type": "varchar",
"required": true
},
"type": {
"type": "varchar",
"maxLength": 36
},
"size": {
"type": "int",
"min": 0
},
"extension": {
"type": "varchar",
"maxLength": 10
},
"parent": {
"type": "linkParent"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"modifiedAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
},
"modifiedBy": {
"type": "link",
"readOnly": true
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
},
"parent": {
"type": "belongsToParent",
"foreign": "attachments"
}
},
"collection": {
"sortBy": "createdAt",
"asc": false
}
}