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
2024-04-01 17:05:57 +03:00

74 lines
1.7 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true
},
"url": {
"type": "url",
"tooltip": true
},
"urlToUse": {
"type": "varchar",
"notStorable": true,
"orderDisabled": true,
"readOnly": true
},
"campaign": {
"type": "link"
},
"action": {
"type": "enum",
"options": ["Redirect", "Show Message"],
"default": "Redirect"
},
"message": {
"type": "text",
"tooltip": true
},
"modifiedAt": {
"type": "datetime",
"readOnly": true,
"fieldManagerParamList": [
"useNumericFormat"
]
},
"modifiedBy": {
"type": "link",
"readOnly": true,
"fieldManagerParamList": []
},
"createdAt": {
"type": "datetime",
"readOnly": true,
"fieldManagerParamList": [
"useNumericFormat"
]
},
"createdBy": {
"type": "link",
"readOnly": true,
"fieldManagerParamList": []
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
},
"campaign": {
"type": "belongsTo",
"entity": "Campaign",
"foreign": "trackingUrls"
}
},
"collection": {
"orderBy": "name",
"order": "asc"
}
}