49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"name": "Image",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "hedera.image"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "The id"
|
|
},
|
|
"name": {
|
|
"type": "String",
|
|
"required": true
|
|
},
|
|
"collectionFk": {
|
|
"type": "String",
|
|
"required": true
|
|
},
|
|
"updated": {
|
|
"type": "Number"
|
|
},
|
|
"nRefs": {
|
|
"type": "Number",
|
|
"required": true,
|
|
"default": 1
|
|
}
|
|
},
|
|
"relations": {
|
|
"collection": {
|
|
"type": "belongsTo",
|
|
"model": "ImageCollection",
|
|
"foreignKey": "collectionFk",
|
|
"primaryKey": "name"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "employee",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
}
|
|
|