Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit e8ca307

Browse files
author
Github Workflow
committed
JSON Schema Update
1 parent 874758b commit e8ca307

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

config/v3/login_history/receive.json

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,17 @@
1818
"additionalProperties": false,
1919
"required": [
2020
"action",
21+
"browser",
22+
"country",
23+
"datetime",
24+
"device",
2125
"environment",
26+
"ip",
27+
"language",
28+
"os",
2229
"status",
23-
"time"
30+
"time",
31+
"version"
2432
],
2533
"properties": {
2634
"action": {
@@ -31,10 +39,38 @@
3139
"logout"
3240
]
3341
},
42+
"browser": {
43+
"description": "Browser used",
44+
"type": "string"
45+
},
46+
"country": {
47+
"description": "Country the login originated (IP Based))",
48+
"type": "string"
49+
},
50+
"datetime": {
51+
"description": "ISO6801 timestame of the activity",
52+
"type": "string"
53+
},
54+
"device": {
55+
"description": "Client device",
56+
"type": "string"
57+
},
3458
"environment": {
3559
"description": "Provides details about browser, device used during login or logout",
3660
"type": "string"
3761
},
62+
"ip": {
63+
"description": "IP Address the login was from",
64+
"type": "string"
65+
},
66+
"language": {
67+
"description": "Browser language",
68+
"type": "string"
69+
},
70+
"os": {
71+
"description": "Operating system",
72+
"type": "string"
73+
},
3874
"status": {
3975
"description": "Status of activity: 1 - success, 0 - failure",
4076
"type": "integer",
@@ -46,6 +82,10 @@
4682
"time": {
4783
"description": "Epoch time of the activity",
4884
"type": "integer"
85+
},
86+
"version": {
87+
"description": "Version of the browser",
88+
"type": "string"
4989
}
5090
}
5191
}

0 commit comments

Comments
 (0)