Files
janus/schema/schema.json

119 lines
1.7 KiB
JSON
Raw Normal View History

2021-04-27 22:48:20 +05:30
{
"type": "object",
"properties": {
"app": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"name": {
"type": "string"
},
"version": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"device": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"device_id": {
"type": "string"
},
"advertising_id": {
"type": "string"
},
"installation_id": {
"type": "string"
},
"category": {
"type": "string"
},
"height": {
"type": "string"
},
"imei": {
"type": "string"
},
"manufacturer": {
"type": "string"
},
"model": {
"type": "string"
},
"screen_resolution": {
"type": "string"
},
"os": {
"type": "string"
},
"os_version": {
"type": "string"
},
"os_api_level": {
"type": "string"
},
"rooted": {
"type": "string"
},
"fingerprint": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"network": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"carrier": {
"type": "string"
},
"type": {
"type": "string"
},
"ip": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"location": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"referer": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"url": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"user": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"customer_id": {
"type": "string"
}
2021-04-27 22:48:20 +05:30
}
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
2022-03-31 16:24:32 +05:30
"event_type": {
"type": "string"
},
"timestamp": {
"type": "number"
2021-04-27 22:48:20 +05:30
}
}
}
}
},
"additionalProperties": false
}