salix/back/models/image-collection-size.json

44 lines
940 B
JSON

{
"name": "ImageCollectionSize",
"base": "VnModel",
"options": {
"mysql": {
"table": "hedera.imageCollectionSize"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"width": {
"type": "number",
"required": true
},
"height": {
"type": "number",
"required": true
},
"crop": {
"type": "boolean",
"required": true
}
},
"relations": {
"collection": {
"type": "belongsTo",
"model": "ImageCollection",
"foreignKey": "collectionFk"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "employee",
"permission": "ALLOW"
}
]
}