33 lines
548 B
JSON
33 lines
548 B
JSON
{
|
|
"name": "DeliveryMethod",
|
|
"description": "Delivery methods",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "deliveryMethod"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
}
|