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/Role.json
T
Yuri Kuznetsov 85b484c04e use jsonObject
2014-11-19 16:03:33 +02:00

29 lines
544 B
JSON

{
"fields": {
"name": {
"maxLength": 150,
"required": true,
"type": "varchar"
},
"data": {
"type": "jsonObject"
}
},
"links": {
"users": {
"type": "hasMany",
"entity": "User",
"foreign": "roles"
},
"teams": {
"type": "hasMany",
"entity": "Team",
"foreign": "roles"
}
},
"collection": {
"sortBy": "name",
"asc": true
}
}