{
    "name": "ClientContact",
    "description": "Client phone contacts",
    "base": "Loggable",
    "log": {
      "model": "ClientLog",
      "relation": "client",
      "showField": "name"
    },
    "options": {
      "mysql": {
        "table": "clientContact"
      }
    },
    "validateUpsert": true,
    "properties": {
      "id": {
        "type": "Number",
        "id": true,
        "description": "Identifier"
      },
      "name": {
        "type": "string"
      },
      "phone": {
        "type": "string"
      }
    },
    "relations": {
      "client": {
        "type": "belongsTo",
        "model": "Client",
        "foreignKey": "clientFk"
      }
    }
  }