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/Modules/Crm/Resources/metadata/entityDefs/CampaignTrackingUrl.json
T
2018-10-22 15:11:06 +03:00

58 lines
1.2 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"trim": true
},
"url": {
"type": "url",
"required": true
},
"urlToUse": {
"type": "varchar",
"notStorable": true,
"readOnly": true
},
"campaign": {
"type": "link",
"required": true
},
"modifiedAt": {
"type": "datetime",
"readOnly": true
},
"modifiedBy": {
"type": "link",
"readOnly": true
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
},
"campaign": {
"type": "belongsTo",
"entity": "Campaign",
"foreign": "trackingUrls"
}
},
"collection": {
"orderBy": "name",
"order": "asc"
}
}