AuditLog
Audit log entry from the database
Properties
| Property | Type | Required | Description |
|---|---|---|---|
action |
string | Yes | |
action_category |
string,null | No | |
actor_id |
string,null | No | |
actor_type |
string | Yes | |
created_at |
string | Yes | |
error_message |
string,null | No | |
id |
string | Yes | |
ip_address |
string,null | No | |
metadata |
any | No | |
organization_id |
string,null | No | |
request_id |
string,null | No | |
resource_id |
string,null | No | |
resource_type |
string | Yes | |
status |
string | Yes | |
user_agent |
string,null | No |
View JSON Schema
{
"type": "object",
"description": "Audit log entry from the database",
"required": [
"id",
"created_at",
"actor_type",
"action",
"resource_type",
"status"
],
"properties": {
"action": {
"type": "string"
},
"action_category": {
"type": [
"string",
"null"
]
},
"actor_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"actor_type": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"error_message": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"ip_address": {
"type": [
"string",
"null"
]
},
"metadata": {},
"organization_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"request_id": {
"type": [
"string",
"null"
]
},
"resource_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"resource_type": {
"type": "string"
},
"status": {
"type": "string"
},
"user_agent": {
"type": [
"string",
"null"
]
}
}
}