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/EmailTemplate.json
T
2015-05-05 10:49:44 +03:00

75 lines
1.6 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true
},
"subject": {
"type": "varchar"
},
"body": {
"type": "text",
"view": "Fields.Wysiwyg"
},
"isHtml": {
"type": "bool",
"default": true
},
"attachments": {
"type": "linkMultiple",
"view": "Fields.AttachmentMultiple"
},
"assignedUser": {
"type": "link",
"required": true
},
"teams": {
"type": "linkMultiple"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"modifiedAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
},
"modifiedBy": {
"type": "link",
"readOnly": true
}
},
"links": {
"attachments": {
"type": "hasChildren",
"entity": "Attachment",
"foreign": "parent"
},
"teams": {
"type": "hasMany",
"entity": "Team",
"relationName": "entityTeam"
},
"assignedUser": {
"type": "belongsTo",
"entity": "User"
},
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
}
},
"collection": {
"sortBy": "name",
"asc": true
}
}