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

44 lines
940 B
JSON
Raw Permalink Normal View History

2020-07-13 09:58:31 +00:00
{
"name": "ImageCollectionSize",
"base": "VnModel",
"options": {
"mysql": {
"table": "hedera.imageCollectionSize"
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2020-07-13 09:58:31 +00:00
"id": true,
"description": "Identifier"
},
"width": {
2022-05-12 07:47:47 +00:00
"type": "number",
2020-07-13 09:58:31 +00:00
"required": true
},
"height": {
2022-05-12 07:47:47 +00:00
"type": "number",
2020-07-13 09:58:31 +00:00
"required": true
},
"crop": {
2022-05-12 07:47:47 +00:00
"type": "boolean",
2020-07-13 09:58:31 +00:00
"required": true
}
},
"relations": {
"collection": {
"type": "belongsTo",
"model": "ImageCollection",
"foreignKey": "collectionFk"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "employee",
"permission": "ALLOW"
}
]
}