36 lines
644 B
JSON
36 lines
644 B
JSON
|
{
|
||
|
"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}}}
|
||
|
}
|