salix/back/models/image.json

47 lines
978 B
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"
}
},
"relations": {
"collection": {
"type": "belongsTo",
"model": "ImageCollection",
"foreignKey": "collectionFk",
"primaryKey": "name"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "employee",
"permission": "ALLOW"
}
]
}