-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-info.json
47 lines (47 loc) · 1.36 KB
/
user-info.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"title": "KRN User Information on PI",
"self": {
"vendor": "at.krone.at",
"name": "user_info",
"format": "jsonschema",
"version": "1-0-0"
},
"description": "Schema for user information tracking",
"type": "object",
"properties": {
"isLoggedIn": {
"description": "Indicates if the user is logged in",
"type": "boolean"
},
"isMobile": {
"description": "Indicates if the user is on a mobile device",
"type": "boolean"
},
"isPrintAbo": {
"description": "Indicates if the user has a print subscription",
"type": "boolean"
},
"deviceSeen": {
"description": "Indicates if the device has been recognized before",
"type": "boolean"
},
"isPlusUser": {
"description": "Indicates if the user is a plus subscriber",
"type": "boolean"
},
"group": {
"description": "User group categorization",
"type": "string"
}
},
"required": [
"isLoggedIn",
"isMobile",
"isPrintAbo",
"deviceSeen",
"isPlusUser",
"group"
],
"additionalProperties": false
}