Skip to content

Commit

Permalink
JSON Schema Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Workflow committed Jan 7, 2025
1 parent 874758b commit e8ca307
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion config/v3/login_history/receive.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,17 @@
"additionalProperties": false,
"required": [
"action",
"browser",
"country",
"datetime",
"device",
"environment",
"ip",
"language",
"os",
"status",
"time"
"time",
"version"
],
"properties": {
"action": {
Expand All @@ -31,10 +39,38 @@
"logout"
]
},
"browser": {
"description": "Browser used",
"type": "string"
},
"country": {
"description": "Country the login originated (IP Based))",
"type": "string"
},
"datetime": {
"description": "ISO6801 timestame of the activity",
"type": "string"
},
"device": {
"description": "Client device",
"type": "string"
},
"environment": {
"description": "Provides details about browser, device used during login or logout",
"type": "string"
},
"ip": {
"description": "IP Address the login was from",
"type": "string"
},
"language": {
"description": "Browser language",
"type": "string"
},
"os": {
"description": "Operating system",
"type": "string"
},
"status": {
"description": "Status of activity: 1 - success, 0 - failure",
"type": "integer",
Expand All @@ -46,6 +82,10 @@
"time": {
"description": "Epoch time of the activity",
"type": "integer"
},
"version": {
"description": "Version of the browser",
"type": "string"
}
}
}
Expand Down

0 comments on commit e8ca307

Please sign in to comment.