Okta · Schema
LogEvent
IdentityWorkforce IdentityCustomer IdentityAuthenticationAuthorizationSingle Sign-OnMulti-Factor AuthenticationIdentity GovernancePrivileged AccessAI AgentsCross-App AccessMCPPlatform
Properties
| Name | Type | Description |
|---|---|---|
| actor | object | |
| authenticationContext | object | |
| client | object | |
| debugContext | object | |
| displayMessage | string | |
| eventType | string | |
| legacyEventType | string | |
| outcome | object | |
| published | string | |
| request | object | |
| securityContext | object | |
| severity | object | |
| target | array | |
| transaction | object | |
| uuid | string | |
| version | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LogEvent",
"title": "LogEvent",
"type": "object",
"properties": {
"actor": {
"$ref": "#/components/schemas/LogActor"
},
"authenticationContext": {
"$ref": "#/components/schemas/LogAuthenticationContext"
},
"client": {
"$ref": "#/components/schemas/LogClient"
},
"debugContext": {
"$ref": "#/components/schemas/LogDebugContext"
},
"displayMessage": {
"type": "string",
"readOnly": true
},
"eventType": {
"type": "string",
"readOnly": true
},
"legacyEventType": {
"type": "string",
"readOnly": true
},
"outcome": {
"$ref": "#/components/schemas/LogOutcome"
},
"published": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"request": {
"$ref": "#/components/schemas/LogRequest"
},
"securityContext": {
"$ref": "#/components/schemas/LogSecurityContext"
},
"severity": {
"$ref": "#/components/schemas/LogSeverity"
},
"target": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/LogTarget"
}
},
"transaction": {
"$ref": "#/components/schemas/LogTransaction"
},
"uuid": {
"type": "string",
"readOnly": true
},
"version": {
"type": "string",
"readOnly": true
}
},
"x-okta-tags": [
"Log"
]
}