48 lines
785 B
JSON
48 lines
785 B
JSON
{
|
|
"name": "VisitAgent",
|
|
"description": "Agents visits",
|
|
"base": "PersistedModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "hedera.visitAgent"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"platform": {
|
|
"type": "String"
|
|
},
|
|
"browser": {
|
|
"type": "String"
|
|
},
|
|
"version": {
|
|
"type": "String"
|
|
},
|
|
"javascript": {
|
|
"type": "Boolean"
|
|
},
|
|
"cookies": {
|
|
"type": "Boolean"
|
|
},
|
|
"agent": {
|
|
"type": "String"
|
|
}
|
|
},
|
|
"relations": {
|
|
"visit": {
|
|
"type": "belongsTo",
|
|
"model": "Visit",
|
|
"foreignKey": "visitFk"
|
|
},
|
|
"firstAccess": {
|
|
"type": "belongsTo",
|
|
"model": "VisitAccess",
|
|
"foreignKey": "firstAccessFk"
|
|
}
|
|
}
|
|
}
|