2020-07-13 09:58:31 +00:00
|
|
|
{
|
|
|
|
"name": "Image",
|
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "hedera.image"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
2021-04-01 05:58:39 +00:00
|
|
|
"type": "number",
|
2020-07-13 09:58:31 +00:00
|
|
|
"id": true,
|
|
|
|
"description": "The id"
|
|
|
|
},
|
|
|
|
"name": {
|
2021-04-01 05:58:39 +00:00
|
|
|
"type": "string",
|
2020-07-13 09:58:31 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"collectionFk": {
|
2021-04-01 05:58:39 +00:00
|
|
|
"type": "string",
|
2020-07-13 09:58:31 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"updated": {
|
2021-04-01 05:58:39 +00:00
|
|
|
"type": "number"
|
2020-07-13 09:58:31 +00:00
|
|
|
},
|
|
|
|
"nRefs": {
|
2021-04-01 05:58:39 +00:00
|
|
|
"type": "number"
|
2020-07-13 09:58:31 +00:00
|
|
|
}
|
|
|
|
},
|
2020-11-10 07:39:34 +00:00
|
|
|
"relations": {
|
|
|
|
"collection": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "ImageCollection",
|
|
|
|
"foreignKey": "collectionFk",
|
|
|
|
"primaryKey": "name"
|
|
|
|
}
|
|
|
|
},
|
2020-07-13 09:58:31 +00:00
|
|
|
"acls": [
|
|
|
|
{
|
|
|
|
"accessType": "READ",
|
|
|
|
"principalType": "ROLE",
|
|
|
|
"principalId": "employee",
|
|
|
|
"permission": "ALLOW"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|