{
  "name": "Province",
  "description": "Provinces of every country",
  "base": "VnModel",
  "options": {
    "mysql": {
      "table": "province"
    }
  },
  "properties": {
    "id": {
      "type": "Number",
      "id": true,
      "description": "Identifier"
    },
    "name": {
      "type": "string",
      "required": true
    }
  },
  "relations": {
    "country": {
      "type": "belongsTo",
      "model": "Country",
      "foreignKey": "countryFk"
    },
    "warehouse": {
      "type": "belongsTo",
      "model": "Warehouse",
      "foreignKey": "warehouseFk"
    },
    "zone": {
      "type": "belongsTo",
      "model": "Zone",
      "foreignKey": "zoneFk"
    }
  },
  "acls": [
    {
      "accessType": "READ",
      "principalType": "ROLE",
      "principalId": "$everyone",
      "permission": "ALLOW"
    }
  ]
}