hedera-web/back/common/models/warehouse.json

36 lines
644 B
JSON
Raw Permalink Normal View History

2019-06-25 08:23:12 +00:00
{
"name": "Warehouse",
"description": "Warehouses from where orders are sent",
"base": "PersistedModel",
"options": {
"mysql": {
"table": "warehouse"
}
},
"properties": {
"id": {
"id": true,
"type": "Number",
"forceId": false
},
"name": {
"type": "String"
},
"isInventory": {
"type": "Number"
},
"isManaged":{
"type": "boolean"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
],
"scope" : {"where": {"isInventory": {"neq": 0}}}
}