Model of an entry in the action log
name | data type | constraints | description |
---|---|---|---|
id | number | required int | Entry ID |
user | string | Lastname and Firstname of the acting User | |
action | ActionModel | Performed action | |
type | ActionLogType | Type of the object, the action was performed on | |
objId | number | required int | ID of the object, the action was performed on |
timestamp | number | required int | Timestamp of the action |
info | string | Additional info |
Example
{ "id" : 12345, "user" : "...", "action" : { "name" : "...", "label" : "..." }, "type" : { "name" : "...", "label" : "..." }, "objId" : 12345, "timestamp" : 12345, "info" : "..." }