ForgeRock · Schema
AuditEntry
An audit log entry
Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| _id | string | |
| eventName | string | |
| timestamp | string | |
| transactionId | string | |
| userId | string | |
| trackingIds | array | |
| runAs | string | |
| objectId | string | |
| operation | string | |
| before | object | |
| after | object | |
| changedFields | array | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AuditEntry",
"title": "AuditEntry",
"type": "object",
"description": "An audit log entry",
"properties": {
"_id": {
"type": "string"
},
"eventName": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"transactionId": {
"type": "string"
},
"userId": {
"type": "string"
},
"trackingIds": {
"type": "array",
"items": {
"type": "string"
}
},
"runAs": {
"type": "string"
},
"objectId": {
"type": "string"
},
"operation": {
"type": "string"
},
"before": {
"type": "object"
},
"after": {
"type": "object"
},
"changedFields": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string",
"enum": [
"SUCCESS",
"FAILURE"
]
}
}
}