Files

48 lines
818 B
JSON
Raw Permalink Normal View History

2024-10-09 18:05:15 +10:00
{
"type": "object",
"description": "Audit Log object",
2025-09-15 17:34:00 +10:00
"required": [
"id",
"created_on",
"modified_on",
"user_id",
"object_type",
"object_id",
"action",
"meta"
],
2024-10-09 18:05:15 +10:00
"additionalProperties": false,
"properties": {
"id": {
2024-10-10 15:53:11 +10:00
"$ref": "../common.json#/properties/id"
2024-10-09 18:05:15 +10:00
},
"created_on": {
2024-10-10 15:53:11 +10:00
"$ref": "../common.json#/properties/created_on"
2024-10-09 18:05:15 +10:00
},
"modified_on": {
2024-10-10 15:53:11 +10:00
"$ref": "../common.json#/properties/modified_on"
2024-10-09 18:05:15 +10:00
},
"user_id": {
2024-10-10 15:53:11 +10:00
"$ref": "../common.json#/properties/user_id"
2024-10-09 18:05:15 +10:00
},
"object_type": {
"type": "string",
"example": "certificate"
2024-10-09 18:05:15 +10:00
},
"object_id": {
2024-10-10 15:53:11 +10:00
"$ref": "../common.json#/properties/id"
2024-10-09 18:05:15 +10:00
},
"action": {
"type": "string",
"example": "created"
2024-10-09 18:05:15 +10:00
},
"meta": {
"type": "object",
"example": {}
2025-09-15 17:34:00 +10:00
},
"user": {
"$ref": "./user-object.json"
2024-10-09 18:05:15 +10:00
}
}
}